Searched refs:tag (Results 1 - 25 of 1112) sorted by path

1234567891011>>

/freebsd-11-stable/bin/setfacl/
H A Dmask.c47 acl_tag_t tag; local
88 if (acl_get_tag_type(entry, &tag) == -1)
92 if (tag == ACL_MASK) {
H A Dmerge.c94 acl_tag_t tag, tag_new; local
122 if (acl_get_tag_type(entry, &tag) == -1)
125 if (tag == ACL_MASK)
133 if (acl_get_tag_type(entry, &tag) == -1)
139 if (tag != tag_new)
143 * For NFSv4, in addition to "tag" and "id" we also
157 switch(tag) {
195 errx(1, "%s: invalid tag type: %i", filename, tag);
H A Dremove.c48 acl_tag_t tag; local
69 tag = ACL_UNDEFINED_TAG;
75 if (acl_get_tag_type(entry, &tag) == -1)
77 if (tag == ACL_MASK)
100 acl_tag_t tag; local
110 tag = ACL_UNDEFINED_TAG;
124 if (acl_get_tag_type(entry, &tag) == -1)
126 if (tag == ACL_MASK)
/freebsd-11-stable/bin/sh/
H A Dmknodes.c79 char *tag; /* structure tag */ member in struct:str
135 char tag[BUFLEN]; local
141 if (! nextfield(tag))
147 if (strcmp(sp->tag, tag) == 0)
151 sp->tag = savestr(tag);
236 fprintf(hfile, "struct %s {\n", sp->tag);
245 fprintf(hfile, " struct %s %s;\n", sp->tag, s
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/
H A Ddtest.pl225 # ensure that a matching error tag was produced. If the file is named
227 # that a matching drop tag was produced. If any *.out or *.err files are found
256 $tag = 0;
264 $tag = $1;
279 if ($opt_a && ($status != 0 || $tag != 0 || $droptag != 0 ||
323 push(@dtrace_argv, '-xerrtags') if ($tag);
334 if ($tag == 0 && $status == $0 && $opt_a) {
357 if ($tag == 0 && $status == $0 && $opt_a) {
473 if ($tag) {
478 unless ($tsterr =~ /: \[$tag\] lin
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/nfs/
H A Dtst.call.c62 char *tag = "dtrace test"; local
79 args.tag.utf8string_len = strlen(tag);
80 args.tag.utf8string_val = tag;
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zdb/
H A Dzdb.c1836 open_objset(const char *path, dmu_objset_type_t type, void *tag, objset_t **osp) argument
1843 err = dmu_objset_own(path, type, B_TRUE, tag, osp);
1862 dmu_objset_disown(*osp, tag);
1872 close_objset(objset_t *os, void *tag) argument
1877 dmu_objset_disown(os, tag);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zhack/
H A Dzhack.c87 fatal(spa_t *spa, void *tag, const char *fmt, ...) argument
92 spa_close(spa, tag);
199 zhack_spa_open(const char *target, boolean_t readonly, void *tag, spa_t **spa) argument
206 err = spa_open(target, spa, tag);
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_ident.c327 dt_node_t tag, *nnp, *xnp; local
402 dxp = dt_xlator_lookup(dtp, dt_probe_tag(prp, ap->dn_value, &tag),
H A Ddt_parser.c1433 * or redeclaration of a struct, union, or enum type or tag.
3305 * a right-hand identifier into a corresponding enum tag value
3309 * convert into an integer constant node with the tag's value.
3324 "both a %s enum tag and a global %s\n",
3731 * If we follow a reference to a forward declaration tag,
3735 char *tag = ctf_type_name(ctfp, type, n1, sizeof (n1)); local
3738 if (tag != NULL && dt_type_lookup(tag, &dtt) == 0 &&
3747 "is available\n", opstr(op), tag);
4858 dnerror(const dt_node_t *dnp, dt_errtag_t tag, cons argument
4875 dnwarn(const dt_node_t *dnp, dt_errtag_t tag, const char *format, ...) argument
4891 xyerror(dt_errtag_t tag, const char *format, ...) argument
4904 xywarn(dt_errtag_t tag, const char *format, ...) argument
4914 xyvwarn(dt_errtag_t tag, const char *format, va_list ap) argument
[all...]
H A Ddt_pid.c94 fasttrap_probe_spec_t *ftp, dt_errtag_t tag, const char *fmt, ...)
111 dt_set_errmsg(dtp, dt_errtag(tag), pcb->pcb_region,
93 dt_pid_error(dtrace_hdl_t *dtp, dt_pcb_t *pcb, dt_proc_t *dpr, fasttrap_probe_spec_t *ftp, dt_errtag_t tag, const char *fmt, ...) argument
/freebsd-11-stable/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Dholds.py60 fields = ("name", "tag", "timestamp")
67 for tag, tm in ds.get_holds().iteritems():
68 val = {"name": ds.name, "tag": tag,
/freebsd-11-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Ddwarf.c314 Dwarf_Half tag; local
316 if (dwarf_tag(die, &tag, &dw->dw_err) == DW_DLV_OK)
317 return (tag);
319 terminate("die %llu: failed to get tag for type: %s\n",
983 Dwarf_Half tag = die_tag(dw, mem); local
986 if (tag != DW_TAG_member) {
1082 * tag will always be followed by a proper nested declaration of
1086 * (i.e. die_child of the struct tag won't be null), we'll ignore it.
1220 Dwarf_Half tag; local
1233 if ((tag
1593 Dwarf_Half tag; local
1764 die_tag2ctor(Dwarf_Half tag) argument
1781 Dwarf_Half tag; local
[all...]
/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/tools/
H A Ddtest.sh15 local tag
17 tag=$(basename $1)
18 tag=${tag#*.}
19 tag=${tag%%[a-z.]*}
20 echo $tag
35 tag=$(gettag "$TFILE")
40 tag=$(gettag "$TFILE")
60 elif [ -n "${tag}" ]
[all...]
/freebsd-11-stable/contrib/amd/doc/
H A Dtexinfo.tex10079 arch-tag: e1b36e32-c96e-4135-a41a-0b2efa2ea115
/freebsd-11-stable/contrib/amd/libamu/
H A Dmount_fs.c710 print_nfs_sockaddr_in(const char *tag, const struct sockaddr_in *sap) argument
713 plog(XLOG_DEBUG, "NA->%s.sin_family = %d", tag, sap->sin_family);
714 plog(XLOG_DEBUG, "NA->%s.sin_port = %d", tag, ntohs(sap->sin_port));
717 plog(XLOG_DEBUG, "NA->%s.sin_addr = \"%s\"", tag, name);
/freebsd-11-stable/contrib/apr-util/docs/
H A Ddoxygen.conf32 GENERATE_TAGFILE=docs/dox/apu.tag
/freebsd-11-stable/contrib/apr/docs/
H A Ddoxygen.conf37 GENERATE_TAGFILE=docs/dox/apr.tag
/freebsd-11-stable/contrib/apr/include/
H A Dapr_pools.h533 * @param pool The pool to tag
534 * @param tag The tag
536 APR_DECLARE(void) apr_pool_tag(apr_pool_t *pool, const char *tag)
/freebsd-11-stable/contrib/binutils/bfd/
H A DMakefile.in95 LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
99 LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
H A Ddwarf1.c118 unsigned short tag; member in struct:die_info
191 aDieInfo->tag = TAG_padding;
195 /* Then the tag. */
196 aDieInfo->tag = bfd_get_16 (abfd, (bfd_byte *) xptr);
353 if (eachDieInfo.tag == TAG_global_subroutine
354 || eachDieInfo.tag == TAG_subroutine
355 || eachDieInfo.tag == TAG_inlined_subroutine
356 || eachDieInfo.tag == TAG_entry_point)
520 if (aDieInfo.tag == TAG_compile_unit)
H A Ddwarf2.c220 enum dwarf_tag tag; /* DWARF tag. */ member in struct:abbrev_info
476 cur_abbrev->tag = (enum dwarf_tag)
741 int tag; member in struct:funcinfo
755 int tag; member in struct:varinfo
1706 if (abbrev->tag == DW_TAG_subprogram
1707 || abbrev->tag == DW_TAG_entry_point
1708 || abbrev->tag == DW_TAG_inlined_subroutine)
1712 func->tag = abbrev->tag;
[all...]
H A Delf-attrs.c55 obj_attr_size (int tag, obj_attribute *attr) argument
62 size = uleb128_size (tag);
102 size += obj_attr_size (list->tag, &list->attr);
144 write_obj_attribute (bfd_byte *p, int tag, obj_attribute *attr) argument
150 p = write_uleb128 (p, tag);
194 p = write_obj_attribute (p, list->tag, &list->attr);
223 elf_new_obj_attr (bfd *abfd, int vendor, int tag) argument
231 if (tag < NUM_KNOWN_OBJ_ATTRIBUTES)
234 attr = &elf_known_obj_attributes (abfd)[vendor][tag];
238 /* Create a new tag
261 bfd_elf_get_obj_attr_int(bfd *abfd, int vendor, int tag) argument
287 bfd_elf_add_obj_attr_int(bfd *abfd, int vendor, int tag, unsigned int i) argument
310 bfd_elf_add_obj_attr_string(bfd *abfd, int vendor, int tag, const char *s) argument
403 gnu_obj_attrs_arg_type(int tag) argument
418 _bfd_elf_obj_attrs_arg_type(bfd *abfd, int vendor, int tag) argument
483 int tag; local
[all...]
H A Delf-bfd.h1091 processor-specific tag takes. */
1307 int tag;
1305 int tag; member in struct:obj_attribute_list
H A Delf32-arm.c6740 /* Determine whether an object attribute tag takes an integer, a
6743 elf32_arm_obj_attrs_arg_type (int tag) argument
6745 if (tag == Tag_compatibility)
6747 else if (tag == 4 || tag == 5)
6749 else if (tag < 32)
6752 return (tag & 1) != 0 ? 2 : 1;
6976 while (in_list && in_list->tag == Tag_compatibility)
6981 if ((in_list->tag & 128) < 64
6982 && in_list->tag !
[all...]

Completed in 294 milliseconds

1234567891011>>