Searched refs:tags (Results 1 - 25 of 340) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/conf/
H A Dsystags.sh33 # systags.sh - construct a system tags file using dependence relations
38 rm -f tags tags.tmp tags.cfiles tags.sfiles tags.hfiles
53 print i > "tags.cfiles";
55 print i > "tags.sfiles";
57 print i > "tags.hfiles";
60 ctags -t -d -w `cat tags
[all...]
/freebsd-11-stable/sys/amd64/
H A DMakefile4 # Makefile for amd64 links, tags file
6 # SYS is normally set in Make.tags.inc
11 .include "../kern/Make.tags.inc"
14 @echo "make links or tags only"
16 # Directories in which to place amd64 tags links
21 (cd $$i && { rm -f tags; ln -s ../${TAGDIR}/tags tags; }) done
23 (cd $$i && { rm -f tags; ln -s ../../${TAGDIR}/tags tag
[all...]
/freebsd-11-stable/sys/i386/
H A DMakefile4 # Makefile for i386 links, tags file
6 # SYS is normally set in Make.tags.inc
11 .include "../kern/Make.tags.inc"
14 @echo "make links or tags only"
16 # Directories in which to place i386 tags links
21 (cd $$i && { rm -f tags; ln -s ../${TAGDIR}/tags tags; }) done
23 (cd $$i && { rm -f tags; ln -s ../../${TAGDIR}/tags tag
[all...]
/freebsd-11-stable/release/scripts/
H A Dmtree-to-plist.awk4 uname = gname = mode = flags = tags = type = ""
18 } else if ($i ~ /^tags=/) {
19 tags=$i
20 gsub(/tags=/, "", tags)
26 tags="package=kernel"
28 tags=tags""_kernconf
31 if (length(tags) == 0)
33 if (tags ~ /packag
[all...]
/freebsd-11-stable/usr.sbin/ctm/mkCTM/
H A Dctm_conf.smp-cur5 set CTMignore {^CVSROOT/history.*$|^CVSROOT/val-tags$|^CVSROOT/\\.#}
H A Dctm_conf.cvs-cur5 set CTMignore {^src/secure|^src/eBones|^src/kerberosIV|^CVSROOT/val-tags$|CVSROOT/\\.#}
/freebsd-11-stable/sys/compat/linuxkpi/common/include/net/
H A Dnetevent.h61 nb->tags[NETEVENT_NEIGH_UPDATE] = EVENTHANDLER_REGISTER(
70 EVENTHANDLER_DEREGISTER(lle_event, nb->tags[NETEVENT_NEIGH_UPDATE]);
/freebsd-11-stable/contrib/dtc/scripts/
H A Dsetlocalversion14 if git name-rev --tags HEAD | grep -E '^HEAD[[:space:]]+(.*~[0-9]*|undefined)$' > /dev/null; then
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dnotifier.h54 eventhandler_tag tags[LINUX_NOTIFY_TAGS]; member in struct:notifier_block
/freebsd-11-stable/sys/dev/proto/
H A Dproto_busdma.h35 LIST_ENTRY(proto_tag) tags; member in struct:proto_tag
60 LIST_HEAD(,proto_tag) tags; member in struct:proto_busdma
/freebsd-11-stable/tools/tools/npe/npestats/
H A Dmain.c46 } tags[] = { variable in typeref:struct:__anon13719
56 for (i = 0; i < nitems(tags); i++)
57 if (strcasecmp(tags[i].tag, tag) == 0)
58 return tags[i].fmt;
/freebsd-11-stable/tools/tools/ath/athaggrstats/
H A Dmain.c59 } tags[] = { variable in typeref:struct:__anon13683
69 for (i = 0; i < nitems(tags); i++)
70 if (strcasecmp(tags[i].tag, tag) == 0)
71 return tags[i].fmt;
/freebsd-11-stable/tools/tools/ath/athstats/
H A Dmain.c58 } tags[] = { variable in typeref:struct:__anon13692
74 for (i = 0; i < nitems(tags); i++)
75 if (strcasecmp(tags[i].tag, tag) == 0)
76 return tags[i].fmt;
/freebsd-11-stable/contrib/ncurses/man/
H A DMakefile.in57 tags :
76 -rm -f core tags TAGS *~ *.bak *.ln *.atac trace
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DUse.cpp51 // Sets up the waymarking algorithm's tags for a series of Uses. See the
61 static const PrevPtrTag tags[20] = { local
66 new (Stop) Use(tags[Done++]);
/freebsd-11-stable/sys/dev/aic7xxx/
H A Dahd_pci.c176 ahd->tags[0] = rman_get_bustag(regs);
178 ahd->tags[1] = ahd->tags[0];
179 error = bus_space_subregion(ahd->tags[0], ahd->bshs[0],
213 ahd->tags[0] = rman_get_bustag(regs);
226 ahd->tags[1] = rman_get_bustag(regs2);
H A Daic79xx_osm.h158 bus_space_read_1((ahd)->tags[(port) >> 8], \
162 bus_space_write_1((ahd)->tags[(port) >> 8], \
166 aic_le16toh(bus_space_read_2((ahd)->tags[(port) >> 8], \
170 bus_space_write_2((ahd)->tags[(port) >> 8], \
175 bus_space_write_multi_1((ahd)->tags[(port) >> 8], \
180 bus_space_read_multi_1((ahd)->tags[(port) >> 8], \
/freebsd-11-stable/contrib/bmake/mk/
H A Ddep.mk109 .if !target(tags)
111 tags: ${SRCS} _SUBDIRUSE
113 sed "s;\${.CURDIR}/;;" > tags
115 tags:
123 rm -f .depend ${.CURDIR}/tags
/freebsd-11-stable/contrib/less/
H A Dtags.c17 public char ztags[] = "tags";
18 public char *tags = ztags; variable
39 T_CTAGS, /* 'tags': standard and extended format (ctags) */
56 * The list of tags generated by the last findgtag() call.
148 if (strcmp(tags, "GTAGS") == 0)
150 if (strcmp(tags, "GRTAGS") == 0)
152 if (strcmp(tags, "GSYMS") == 0)
154 if (strcmp(tags, "GPATH") == 0)
156 if (strcmp(tags, "-") == 0)
158 f = open(tags, OPEN_REA
[all...]
/freebsd-11-stable/contrib/dialog/
H A Ddialog.c233 { "help-tags", o_help_tags, 1, "" },
327 { "no-tags", o_no_tags, 1, "" },
548 * In MultiWidget this function is needed to count how many tags
694 int tags = howmany_tags(av + 5, MENUBOX_TAGS); local
695 *offset_add = 5 + tags * MENUBOX_TAGS;
702 tags, av + 5);
708 int tags = howmany_tags(av + 5, MENUBOX_TAGS); local
724 *offset_add = 5 + tags * MENUBOX_TAGS;
730 tags, av + 5);
741 int tags local
757 int tags = howmany_tags(av + 5, CHECKBOX_TAGS); local
863 int tags = howmany_tags(av + 5, CHECKBOX_TAGS); local
899 int tags = howmany_tags(av + 5, TREEVIEW_TAGS); local
921 int tags = howmany_tags(av + 5, group); local
951 int tags = howmany_tags(av + 5, group); local
992 int tags = howmany_tags(av + MIXEDGAUGE_BASE, MIXEDGAUGE_TAGS); local
[all...]
/freebsd-11-stable/contrib/libstdc++/libmath/
H A DMakefile.in334 tags: TAGS
338 tags=; \
346 if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
349 $$tags $$unique; \
354 tags=; \
362 test -z "$(CTAGS_ARGS)$$tags$$unique" \
364 $$tags $$unique
371 distclean-tags:
372 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
437 distclean-libtool distclean-tags
[all...]
/freebsd-11-stable/contrib/ldns/drill/
H A DMakefile.in49 .PHONY: all clean realclean docclean doc release tags install all-static
54 tags:
83 rm -f tags
/freebsd-11-stable/contrib/openbsm/bin/
H A DMakefile.in83 $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
310 tags-recursive:
312 test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
331 tags: TAGS
333 TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
399 distclean-tags:
400 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
498 distclean-am: clean-am distclean-generic distclean-tags
560 tags-recursive
565 distclean distclean-generic distclean-libtool distclean-tags \
[all...]
/freebsd-11-stable/contrib/openbsm/modules/
H A DMakefile.in79 $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
307 tags-recursive:
309 test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
328 tags: TAGS
330 TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
396 distclean-tags:
397 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
495 distclean-am: clean-am distclean-generic distclean-tags
557 tags-recursive
562 distclean distclean-generic distclean-libtool distclean-tags \
[all...]
/freebsd-11-stable/contrib/openbsm/sys/
H A DMakefile.in79 $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
307 tags-recursive:
309 test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
328 tags: TAGS
330 TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
396 distclean-tags:
397 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
495 distclean-am: clean-am distclean-generic distclean-tags
557 tags-recursive
562 distclean distclean-generic distclean-libtool distclean-tags \
[all...]

Completed in 155 milliseconds

1234567891011>>