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

1234567

/freebsd-10.0-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-10.0-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-10.0-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-10.0-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-10.0-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-10.0-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-10.0-release/contrib/dtc/scripts/
H A Dsetlocalversion14 if git name-rev --tags HEAD | grep -E '^HEAD[[:space:]]+(.*~[0-9]*|undefined)$' > /dev/null; then
/freebsd-10.0-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-10.0-release/tools/tools/ath/athaggrstats/
H A Dmain.c57 } tags[] = { variable in typeref:struct:__anon11330
68 for (i = 0; i < N(tags); i++)
69 if (strcasecmp(tags[i].tag, tag) == 0)
70 return tags[i].fmt;
/freebsd-10.0-release/tools/tools/ath/athstats/
H A Dmain.c56 } tags[] = { variable in typeref:struct:__anon11341
73 for (i = 0; i < N(tags); i++)
74 if (strcasecmp(tags[i].tag, tag) == 0)
75 return tags[i].fmt;
/freebsd-10.0-release/tools/tools/npe/npestats/
H A Dmain.c44 } tags[] = { variable in typeref:struct:__anon11369
55 for (i = 0; i < N(tags); i++)
56 if (strcasecmp(tags[i].tag, tag) == 0)
57 return tags[i].fmt;
/freebsd-10.0-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-10.0-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-10.0-release/usr.bin/iscsictl/
H A Dtoken.l80 tags { return IGNORED; }
/freebsd-10.0-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-10.0-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-10.0-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-10.0-release/contrib/mdocml/
H A Dhtml.c133 h->tags.head = NULL;
181 while ((tag = h->tags.head) != NULL) {
182 h->tags.head = tag->next;
401 /* Push this tags onto the stack of open scopes. */
406 t->next = h->tags.head;
407 h->tags.head = t;
540 while ((tag = h->tags.head) != NULL) {
550 h->tags.head = tag->next;
563 while ((tag = h->tags.head) != NULL) {
575 h->tags
[all...]
/freebsd-10.0-release/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-10.0-release/contrib/libstdc++/
H A DMakefile.am68 TAGS: tags-recursive $(LISP)
/freebsd-10.0-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-10.0-release/crypto/openssl/crypto/krb5/
H A DMakefile57 tags:
74 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff

Completed in 179 milliseconds

1234567