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

123456789

/freebsd-9.3-release/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-9.3-release/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-9.3-release/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-9.3-release/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-9.3-release/sys/ofed/include/net/
H A Dnetevent.h56 nb->tags[NETEVENT_NEIGH_UPDATE] = EVENTHANDLER_REGISTER(
65 EVENTHANDLER_DEREGISTER(lle_event, nb->tags[NETEVENT_NEIGH_UPDATE]);
/freebsd-9.3-release/contrib/texinfo/makeinfo/
H A Dnode.c44 /* Adding nodes, and making tags. */
1410 TAG_ENTRY *tags = tag_table;
1412 while (tags)
1417 input_filename = tags->filename;
1418 line_number = tags->line_no;
1421 if (tags->flags & TAG_FLAG_NO_WARN)
1423 tags = tags->next_ent;
1428 if (tags->next)
1430 validate (tags
1404 TAG_ENTRY *tags = tag_table; local
1646 last_node_p(TAG_ENTRY *tags) argument
1779 TAG_ENTRY *tags = tag_table; local
[all...]
/freebsd-9.3-release/contrib/dtc/scripts/
H A Dsetlocalversion14 if git name-rev --tags HEAD | grep -E '^HEAD[[:space:]]+(.*~[0-9]*|undefined)$' > /dev/null; then
/freebsd-9.3-release/sys/ofed/include/linux/
H A Dnotifier.h44 eventhandler_tag tags[_NOTIFY_COUNT]; member in struct:notifier_block
H A Dnetdevice.h104 nb->tags[NETDEV_UP] = EVENTHANDLER_REGISTER(
106 nb->tags[NETDEV_REGISTER] = EVENTHANDLER_REGISTER(
108 nb->tags[NETDEV_UNREGISTER] = EVENTHANDLER_REGISTER(
117 EVENTHANDLER_DEREGISTER(ifnet_link_event, nb->tags[NETDEV_UP]);
118 EVENTHANDLER_DEREGISTER(ifnet_arrival_event, nb->tags[NETDEV_REGISTER]);
120 nb->tags[NETDEV_UNREGISTER]);
/freebsd-9.3-release/contrib/cvs/contrib/
H A Dcln_hist.in38 %tags = ();
58 $tags{$tmp[4] . '|' . $tmp[5]} = $_;
78 next if $tags{$tmp[4] . '|' . $tmp[5]} ne $_;
/freebsd-9.3-release/tools/tools/ath/athstats/
H A Dmain.c56 } tags[] = { variable in typeref:struct:__anon10694
73 for (i = 0; i < N(tags); i++)
74 if (strcasecmp(tags[i].tag, tag) == 0)
75 return tags[i].fmt;
/freebsd-9.3-release/tools/tools/npe/npestats/
H A Dmain.c44 } tags[] = { variable in typeref:struct:__anon10719
55 for (i = 0; i < N(tags); i++)
56 if (strcasecmp(tags[i].tag, tag) == 0)
57 return tags[i].fmt;
/freebsd-9.3-release/crypto/openssl/tools/
H A DMakefile43 tags:
54 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
/freebsd-9.3-release/share/mk/
H A Dbsd.dep.mk8 # CTAGS A tags file generation program [gtags]
30 # Remove depend and tags file
36 # tags:
37 # In "ctags" mode, create a tags file for the source files.
58 # Keep `tags' here, before SRCS are mangled below for `depend'.
59 .if !target(tags) && defined(SRCS) && !defined(NO_TAGS)
60 tags: ${SRCS}
178 rm -f ${DEPENDFILE} tags
/freebsd-9.3-release/contrib/llvm/lib/IR/
H A DUse.cpp94 static const PrevPtrTag tags[20] = { fullStopTag, oneDigitTag, stopTag, local
102 new(Stop) Use(tags[Done++]);
/freebsd-9.3-release/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-9.3-release/contrib/bmake/mk/
H A Ddep.mk115 .if !target(tags)
117 tags: ${SRCS} _SUBDIRUSE
119 sed "s;\${.CURDIR}/;;" > tags
121 tags:
129 rm -f .depend ${.CURDIR}/tags
/freebsd-9.3-release/contrib/less/
H A Dtags.c17 public char *tags = "tags"; variable
37 T_CTAGS, /* 'tags': standard and extended format (ctags) */
54 * The list of tags generated by the last findgtag() call.
144 if (strcmp(tags, "GTAGS") == 0)
146 if (strcmp(tags, "GRTAGS") == 0)
148 if (strcmp(tags, "GSYMS") == 0)
150 if (strcmp(tags, "GPATH") == 0)
152 if (strcmp(tags, "-") == 0)
154 f = open(tags, OPEN_REA
[all...]
/freebsd-9.3-release/contrib/libstdc++/
H A DMakefile.am68 TAGS: tags-recursive $(LISP)
/freebsd-9.3-release/contrib/texinfo/info/
H A Dnodes.c52 /* Magic number that RMS used to decide how much a tags table pointer could
57 neccessary to fill in the nodes or tags arrays in FILE_BUFFER. */
178 /* If this is the "main" info file, it might contain a tags table. Search
179 the tags table for an entry which matches the node that we want. If
180 there is a tags table, get the file which contains this node, but don't
182 else if (file_buffer->tags)
215 try to build a tags table (or otherwise glean the nodes) for this
216 file once found. By default, we build the tags table, but when this
218 tags table describing the nodes, it is unnecessary. */
282 if (get_tags && !file_buffer->tags)
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/krb5/
H A DMakefile57 tags:
74 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
/freebsd-9.3-release/crypto/openssl/crypto/txt_db/
H A DMakefile56 tags:
73 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
/freebsd-9.3-release/contrib/dialog/
H A Ddialog.c497 * In MultiWidget this function is needed to count how many tags
639 int tags = howmany_tags(av + 5, MENUBOX_TAGS); local
640 *offset_add = 5 + tags * MENUBOX_TAGS;
647 tags, av + 5);
653 int tags = howmany_tags(av + 5, MENUBOX_TAGS); local
669 *offset_add = 5 + tags * MENUBOX_TAGS;
675 tags, av + 5);
686 int tags = howmany_tags(av + 5, CHECKBOX_TAGS); local
691 *offset_add = 5 + tags * CHECKBOX_TAGS;
697 tags, a
705 int tags = howmany_tags(av + 5, CHECKBOX_TAGS); local
800 int tags = howmany_tags(av + 5, group); local
830 int tags = howmany_tags(av + 5, group); local
871 int tags = howmany_tags(av + MIXEDGAUGE_BASE, MIXEDGAUGE_TAGS); local
[all...]

Completed in 154 milliseconds

123456789