Lines Matching refs:base

1087     mdb_ctf_id_t base, ulong_t off, printarg_t *pap)  in print_int()  argument
1094 if (mdb_ctf_type_encoding(base, &e) != 0) { in print_int()
1109 mdb_ctf_id_t base, ulong_t off, printarg_t *pap) in print_float() argument
1124 if (mdb_ctf_type_encoding(base, &e) == 0) { in print_float()
1173 mdb_ctf_id_t base, ulong_t off, printarg_t *pap) in print_ptr() argument
1200 if (mdb_ctf_type_kind(base) == CTF_K_POINTER && in print_ptr()
1201 mdb_ctf_type_reference(base, &base) != -1 && in print_ptr()
1202 mdb_ctf_type_resolve(base, &base) != -1 && in print_ptr()
1203 mdb_ctf_type_encoding(base, &e) == 0 && IS_CHAR(e)) { in print_ptr()
1225 mdb_ctf_id_t base, ulong_t off, printarg_t *pap) in print_array() argument
1249 if (mdb_ctf_array_info(base, &r) == -1 || in print_array()
1250 mdb_ctf_type_resolve(r.mta_contents, &base) == -1 || in print_array()
1251 (eltsize = mdb_ctf_type_size(base)) == -1) { in print_array()
1263 mdb_ctf_type_encoding(base, &e) == 0 && IS_CHAR(e) && in print_array()
1292 kind = mdb_ctf_type_kind(base); in print_array()
1352 mdb_ctf_id_t base, ulong_t off, printarg_t *pap) in print_sou() argument
1409 mdb_ctf_id_t base, ulong_t off, printarg_t *pap) in print_enum() argument
1414 int isp2 = enum_is_p2(base); in print_enum()
1434 if (!isp2 || enum_value_print_p2(base, value, 0) != 0) { in print_enum()
1435 ename = mdb_ctf_enum_name(base, value); in print_enum()
1454 mdb_ctf_id_t base, ulong_t off, printarg_t *pap) in print_tag() argument
1461 if (mdb_ctf_type_name(base, basename, sizeof (basename)) != NULL) in print_tag()
1591 elt_print(const char *name, mdb_ctf_id_t id, mdb_ctf_id_t base, in elt_print() argument
1613 if (!mdb_ctf_type_valid(base) || in elt_print()
1614 (kind = mdb_ctf_type_kind(base)) == -1) in elt_print()
1640 if (mdb_ctf_type_name(base, basetype, sz) != NULL && in elt_print()
1683 mdb_ctf_type_encoding(base, &e) == 0) in elt_print()
1685 else if ((nsize = mdb_ctf_type_size(base)) >= 0) in elt_print()
1740 if (mdb_ctf_type_encoding(base, &e) == 0) { in elt_print()
1747 size != mdb_ctf_type_size(base)) in elt_print()
1765 rc = printfuncs[kind - 1](type, name, id, base, off, pap); in elt_print()
1786 mdb_ctf_id_t base; in pipe_print() local
1797 if (mdb_ctf_type_resolve(id, &base) == -1) { in pipe_print()
1812 switch (mdb_ctf_type_kind(base)) { in pipe_print()
1832 if (mdb_ctf_type_encoding(base, &e) != 0) { in pipe_print()
1883 mdb_warn("unknown type %d", mdb_ctf_type_kind(base)); in pipe_print()
2510 mdb_ctf_id_t base; in cmd_print() local
2511 (void) mdb_ctf_type_resolve(mid, &base); in cmd_print()
2513 if (elt_print("", mid, base, off, 0, in cmd_print()
2596 mdb_ctf_id_t base; in printf_signed() local
2610 if (mdb_ctf_type_resolve(id, &base) == -1) { in printf_signed()
2615 switch (mdb_ctf_type_kind(base)) { in printf_signed()
2622 if (mdb_ctf_type_encoding(base, &e) != 0) { in printf_signed()
2751 mdb_ctf_id_t base; in printf_uint32() local
2755 if (mdb_ctf_type_resolve(id, &base) == -1) { in printf_uint32()
2760 if (mdb_ctf_type_kind(base) != CTF_K_INTEGER || in printf_uint32()
2761 mdb_ctf_type_encoding(base, &e) != 0 || in printf_uint32()
2782 mdb_ctf_id_t base; in printf_ptr() local
2784 if (mdb_ctf_type_resolve(id, &base) == -1) { in printf_ptr()
2789 if (mdb_ctf_type_kind(base) != CTF_K_POINTER) { in printf_ptr()
2808 mdb_ctf_id_t base; in printf_string() local
2813 if (mdb_ctf_type_resolve(id, &base) == -1) { in printf_string()
2818 if (mdb_ctf_type_kind(base) == CTF_K_POINTER) { in printf_string()
2835 if (mdb_ctf_type_kind(base) == CTF_K_ENUM) { in printf_string()
2854 if (mdb_ctf_type_kind(base) != CTF_K_ARRAY) { in printf_string()
2859 if (mdb_ctf_array_info(base, &r) == -1 || in printf_string()
2860 mdb_ctf_type_resolve(r.mta_contents, &base) == -1 || in printf_string()
2861 (size = mdb_ctf_type_size(base)) == -1) { in printf_string()
2888 mdb_ctf_id_t base; in printf_ipv6() local
2897 if (mdb_ctf_type_resolve(id, &base) == -1) { in printf_ipv6()
2907 if (mdb_ctf_type_cmp(base, ipv6_base) != 0) { in printf_ipv6()