Home
last modified time | relevance | path

Searched refs:basetype (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/tools/smatch/src/
H A Dcheck_kernel_printf.c356 static void ip4(const char *fmt, struct symbol *type, struct symbol *basetype, int vaidx) in ip4() argument
396 if (is_char_type(basetype)) in ip4()
399 if (is_struct_tag(basetype, "in_addr") && endian != ENDIAN_BIG) in ip4()
405 static void ip6(const char *fmt, struct symbol *type, struct symbol *basetype, int vaidx) in ip6() argument
423 static void ipS(const char *fmt, struct symbol *type, struct symbol *basetype, int vaidx) in ipS() argument
444 if (!has_struct_tag(basetype, "sockaddr") && in ipS()
445 !has_struct_tag(basetype, "sockaddr_in") && in ipS()
446 !has_struct_tag(basetype, "sockaddr_in6") && in ipS()
447 !has_struct_tag(basetype, "__kernel_sockaddr_storage")) in ipS()
452 static void hex_string(const char *fmt, struct symbol *type, struct symbol *basetype, int vaidx) in hex_string() argument
[all …]
H A Dparse.dtd5 <!ATTLIST symbol type (uninitialized|preprocessor|basetype|node|pointer|function|array|struct|union…
/illumos-gate/usr/src/cmd/abi/spectrans/spec2trace/
H A Dsymtab.c352 char *type, char *basetype, int levels) in symtab_set_function() argument
357 name, line, file, PRIMITIVE, type, basetype, levels, "", -1, -1); in symtab_set_function()
393 symtab_set_errval(char *name, int line, char *file, char *type, char *basetype, in symtab_set_errval() argument
399 name, line, file, PRIMITIVE, type, basetype, levels, in symtab_set_errval()
420 char *type, char *basetype, int levels) in symtab_add_args() argument
428 name, line, file, PRIMITIVE, type, basetype, levels, "", -1, -1); in symtab_add_args()
493 char *basetype, int levels) in symtab_add_globals() argument
501 name, line, file, PRIMITIVE, type, basetype, levels, "", -1, -1); in symtab_add_globals()
768 int kind, char *type, char *basetype, int levels, char *attribute, in allocate_entry() argument
779 return (set_entry(e, name, line, file, kind, type, basetype, levels, in allocate_entry()
[all …]
/illumos-gate/usr/src/tools/lintdump/
H A Dlintdump.c309 uint16_t basetype = atp->aty & LNQUAL; in print_atype() local
319 if (basetype < 1 || in print_atype()
320 basetype > (sizeof (basetypes) / sizeof (*basetypes))) in print_atype()
321 info("<unknown type %x>", basetype); in print_atype()
323 switch (basetype) { in print_atype()
328 info("%s %s", basetypes[basetype], lsup->name); in print_atype()
330 info("%s", basetypes[basetype]); in print_atype()
338 info("%s", basetypes[basetype]); in print_atype()
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
H A Dasn1_encode.c389 assert(a->basetype != NULL); in krb5int_asn1_encode_a_thing()
391 a->basetype, retlen); in krb5int_asn1_encode_a_thing()
397 assert(a->basetype != NULL); in krb5int_asn1_encode_a_thing()
398 return encode_nullterm_sequence_of(buf, val, a->basetype, in krb5int_asn1_encode_a_thing()
405 retval = krb5int_asn1_encode_a_thing(buf, val, a->basetype, &length); in krb5int_asn1_encode_a_thing()
466 a = field->atype->basetype; in encode_a_field()
H A Dasn1_encode.h267 const struct atype_info *basetype; member
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_print.c1627 char *basetype; in elt_print() local
1632 basetype = type + strlen(type); in elt_print()
1633 sz = sizeof (type) - (basetype - type); in elt_print()
1637 if (mdb_ctf_type_name(base, basetype, sz) != NULL && in elt_print()
1638 strcmp(basetype, type) != 0 && in elt_print()
1639 strcmp(basetype, "struct ") != 0 && in elt_print()
1640 strcmp(basetype, "enum ") != 0 && in elt_print()
1641 strcmp(basetype, "union ") != 0) { in elt_print()
/illumos-gate/usr/src/lib/libc/port/threads/
H A Dsynch.c132 int basetype = (type & ~ALL_ATTRIBUTES); in mutex_init() local
137 if (basetype == USYNC_PROCESS_ROBUST) { in mutex_init()
146 basetype = USYNC_PROCESS; in mutex_init()
151 if ((basetype != USYNC_THREAD && basetype != USYNC_PROCESS) || in mutex_init()
181 if (basetype == USYNC_PROCESS) in mutex_init()