/freebsd/sys/conf/ |
H A D | systags.sh | 36 rm -f tags tags.tmp tags.cfiles tags.sfiles tags.hfiles 58 ctags -t -d -w `cat tags.cfiles tags.hfiles tags.sfiles` 59 egrep "^ENTRY\(.*\)|^ALTENTRY\(.*\)" `cat tags.sfiles` | \ 60 sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$/;" >> tags 62 mv tags tags.tmp 63 sort -u tags.tmp > tags 64 rm tags.tmp tags.cfiles tags.sfiles tags.hfiles
|
/freebsd/sys/contrib/openzfs/tests/runfiles/ |
H A D | sanity.run | 30 tags = ['functional'] 34 tags = ['functional', 'acl'] 40 tags = ['functional', 'alloc_class'] 44 tags = ['functional', 'arc'] 48 tags = ['functional', 'bootfs'] 52 tags = ['functional', 'cache'] 57 tags = ['functional', 'cachefile'] 63 tags = ['functional', 'casenorm'] 73 tags = ['functional', 'channel_program', 'lua_core'] 87 tags = ['functional', 'channel_program', 'synctask_core'] [all …]
|
H A D | common.run | 28 tags = ['functional'] 32 tags = ['functional', 'acl'] 40 tags = ['functional', 'alloc_class'] 44 tags = ['functional', 'append'] 49 tags = ['functional', 'arc'] 53 tags = ['functional', 'atime'] 70 tags = ['functional', 'bclone'] 85 tags = ['functional', 'block_cloning'] 91 tags = ['functional', 'bootfs'] 95 tags = ['functional', 'btree'] [all …]
|
H A D | linux.run | 22 tags = ['functional'] 26 tags = ['functional', 'acl', 'posix'] 30 tags = ['functional', 'acl', 'posix-sa'] 34 tags = ['functional', 'atime'] 40 tags = ['functional', 'block_cloning'] 44 tags = ['functional', 'chattr'] 48 tags = ['functional', 'cli_root', 'zfs'] 53 tags = ['functional', 'cli_root', 'zfs_mount'] 58 tags = ['functional', 'cli_root', 'zfs_share'] 62 tags = ['functional', 'cli_root', 'zfs_unshare'] [all …]
|
H A D | sunos.run | 22 tags = ['functional'] 27 tags = ['functional', 'inuse'] 31 tags = ['functional', 'cli_root', 'zpool_add'] 35 tags = ['functional', 'cli_root', 'zpool_create'] 39 tags = ['functional', 'privilege'] 43 tags = ['functional', 'xattr'] 48 tags = ['functional', 'zvol', 'zvol_misc'] 52 tags = ['functional', 'zvol', 'zvol_swap']
|
H A D | freebsd.run | 22 tags = ['functional'] 26 tags = ['functional', 'cli_root', 'zfs_jail'] 31 tags = ['functional', 'pam'] 35 tags = ['functional', 'direct']
|
/freebsd/sys/amd64/ |
H A D | Makefile | 18 (cd $$i && { rm -f tags; ln -s ../${TAGDIR}/tags tags; }) done 20 (cd $$i && { rm -f tags; ln -s ../../${TAGDIR}/tags tags; }) done 22 (cd ${SYS}/amd64/$$i && { rm -f tags; ln -s ../tags tags; }) done 31 tags:: target 35 >> tags 36 sort -o tags tags 37 chmod 444 tags 38 rm -f ${SYS}/amd64/tags 39 mv tags ${SYS}/amd64/tags
|
/freebsd/sys/i386/ |
H A D | Makefile | 18 (cd $$i && { rm -f tags; ln -s ../${TAGDIR}/tags tags; }) done 20 (cd $$i && { rm -f tags; ln -s ../../${TAGDIR}/tags tags; }) done 22 (cd $$i && { rm -f tags; ln -s ../tags tags; }) done 30 tags:: target 34 >> tags 35 sort -o tags tags 36 chmod 444 tags
|
/freebsd/release/scripts/ |
H A D | mtree-to-plist.awk | 4 uname = gname = mode = flags = tags = type = "" 18 } else if ($i ~ /^tags=/) { 19 tags=$i 20 gsub(/tags=/, "", tags) 27 tags="package=dtb" 29 tags="package=kernel" 31 tags=tags""_kernconf 35 if (length(tags) == 0) 37 if (tags ~ /package=/) { 39 split(tags, a, ",");
|
/freebsd/etc/mtree/ |
H A D | BSD.var.dist | 5 /set type=dir uname=root gname=wheel mode=0755 tags=package=runtime 11 jobs tags=package=at 13 spool tags=package=at 44 hyperv mode=0700 tags=package=hyperv-tools 46 ipf mode=0700 tags=package=ipf 56 zfsd tags=package=zfs 76 bhyve tags=package=bhyve 78 dhclient tags=package=dhclient 80 ppp gname=network mode=0770 tags=package=ppp 82 wpa_supplicant tags [all...] |
H A D | BSD.root.dist | 13 allwinner tags=package=runtime 15 overlays tags=package=runtime 17 rockchip tags=package=runtime 30 loader.conf.d tags=package=bootloader 64 kyua tags=package=tests
|
H A D | BSD.usr.dist | 186 atf tags=package=tests 213 trusted tags=package=caroot 215 untrusted tags=package=caroot 223 atf tags=package=tests 225 kyua tags=package=tests 321 kyua tags=package=tests 458 revoked tags=package=runtime 460 trusted tags=package=runtime 464 kyua tags=package=tests 465 misc tags=package=tests [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | MemoryTagManagerAArch64MTE.cpp | 218 MemoryTagManagerAArch64MTE::UnpackTagsData(const std::vector<uint8_t> &tags, in UnpackTagsData() argument 222 size_t num_tags = tags.size() / GetTagSizeInBytes(); in UnpackTagsData() 235 unpacked.reserve(tags.size()); in UnpackTagsData() 236 for (auto it = tags.begin(); it != tags.end(); ++it) { in UnpackTagsData() 296 std::vector<lldb::addr_t> tags; in UnpackTagsFromCoreFileSegment() local 297 tags.reserve(2 * tag_data.size()); in UnpackTagsFromCoreFileSegment() 301 tags.push_back(tag_byte & 0xf); in UnpackTagsFromCoreFileSegment() 302 tags.push_back(tag_byte >> 4); in UnpackTagsFromCoreFileSegment() 307 tags.erase(tags.begin()); in UnpackTagsFromCoreFileSegment() 310 tags.pop_back(); in UnpackTagsFromCoreFileSegment() [all …]
|
/freebsd/crypto/openssl/util/ |
H A D | find-doc-nits | 172 my %tags = map { $_ => 1 } @{$opts{TAGS}}; 173 $tags{public_manual} = 1 174 if $tags{manual} && ($tags{public} // !$tags{internal}); 175 $tags{internal_manual} = 1 176 if $tags{manual} && ($tags{internal} // !$tags{public}); 177 $tags{public_header} = 1 178 if $tags{header} && ($tags{public} // !$tags{internal}); 179 delete $tags{manual}; 180 delete $tags{header}; 181 delete $tags{public}; [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | MemoryTagMap.cpp | 20 const std::vector<lldb::addr_t> tags) { in InsertTags() argument 23 for (auto tag : tags) { in InsertTags() 38 std::vector<std::optional<lldb::addr_t>> tags; in GetTags() local 46 tags.push_back(tag); in GetTags() 54 return tags; in GetTags()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectMemoryTag.cpp | 29 "Read memory tags for the given range of memory." in CommandObjectMemoryTagRead() 30 " Mismatched tags will be marked.", in CommandObjectMemoryTagRead() 109 llvm::Expected<std::vector<lldb::addr_t>> tags = process->ReadMemoryTags( in DoExecute() local 112 if (!tags) { in DoExecute() 113 result.SetError(Status(tags.takeError())); in DoExecute() 118 result.AppendMessage("Allocation tags:"); in DoExecute() 121 for (auto tag : *tags) { in DoExecute() 176 "Write memory tags starting from the granule that " in CommandObjectMemoryTagWrite() 215 std::vector<lldb::addr_t> tags; in DoExecute() 225 tags in DoExecute() 216 std::vector<lldb::addr_t> tags; DoExecute() local [all...] |
/freebsd/contrib/libcbor/doc/source/api/ |
H A D | type_6.rst | 1 Type 6 – Semantic tags 8 … consult the official `IANA repository of CBOR tags <https://www.iana.org/assignments/cbor-tags/cb…
|
/freebsd/sys/dev/aic7xxx/ |
H A D | aic79xx_osm.h | 149 bus_space_read_1((ahd)->tags[(port) >> 8], \ 153 bus_space_write_1((ahd)->tags[(port) >> 8], \ 157 aic_le16toh(bus_space_read_2((ahd)->tags[(port) >> 8], \ 161 bus_space_write_2((ahd)->tags[(port) >> 8], \ 166 bus_space_write_multi_1((ahd)->tags[(port) >> 8], \ 171 bus_space_read_multi_1((ahd)->tags[(port) >> 8], \
|
H A D | ahd_pci.c | 170 ahd->tags[0] = rman_get_bustag(regs); in ahd_pci_map_registers() 172 ahd->tags[1] = ahd->tags[0]; in ahd_pci_map_registers() 173 error = bus_space_subregion(ahd->tags[0], ahd->bshs[0], in ahd_pci_map_registers() 207 ahd->tags[0] = rman_get_bustag(regs); in ahd_pci_map_registers() 220 ahd->tags[1] = rman_get_bustag(regs2); in ahd_pci_map_registers()
|
/freebsd/usr.bin/vi/catalog/ |
H A D | zh_CN.UTF-8.base | 152 159 "tags 栈上的记录少于 %s 条;用 :display t[ags] 显示它们" 153 160 "tags 栈上不存在文件 %s,无法返回;用 :display t[ags] 查看" 158 165 "tags 栈为空" 245 255 "已位于这组 tags 中的第一个" 272 282 "已位于这组 tags 中的最后一个"
|
/freebsd/tools/tools/npe/npestats/ |
H A D | main.c | 44 } tags[] = { variable 54 for (i = 0; i < nitems(tags); i++) in getfmt() 55 if (strcasecmp(tags[i].tag, tag) == 0) in getfmt() 56 return tags[i].fmt; in getfmt()
|
/freebsd/tools/tools/ath/athaggrstats/ |
H A D | main.c | 57 } tags[] = { variable 67 for (i = 0; i < nitems(tags); i++) in getfmt() 68 if (strcasecmp(tags[i].tag, tag) == 0) in getfmt() 69 return tags[i].fmt; in getfmt()
|
/freebsd/tools/tools/ath/athstats/ |
H A D | main.c | 56 } tags[] = { variable 75 for (i = 0; i < nitems(tags); i++) in getfmt() 76 if (strcasecmp(tags[i].tag, tag) == 0) in getfmt() 77 return tags[i].fmt; in getfmt()
|
/freebsd/contrib/bmake/mk/ |
H A D | dep.mk | 118 .if !target(tags) 120 tags: ${SRCS} _SUBDIRUSE 122 sed "s;\${.CURDIR}/;;" > tags 124 tags: 132 rm -f .depend ${.CURDIR}/tags
|
/freebsd/contrib/less/ |
H A D | tags.c | 17 public constant char ztags[] = "tags"; 18 public constant char *tags = ztags; variable 39 T_CTAGS, /* 'tags': standard and extended format (ctags) */ 56 * The list of tags generated by the last findgtag() call. 140 if (strcmp(tags, "GTAGS") == 0) in gettagtype() 142 if (strcmp(tags, "GRTAGS") == 0) in gettagtype() 144 if (strcmp(tags, "GSYMS") == 0) in gettagtype() 146 if (strcmp(tags, "GPATH") == 0) in gettagtype() 148 if (strcmp(tags, "-") == 0) in gettagtype() 150 f = open(tags, OPEN_REA in gettagtype() [all...] |