Home
last modified time | relevance | path

Searched refs:rkind (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_tab.c498 int rkind; in tab_complete_type() local
519 rkind = mdb_ctf_type_kind(rid); in tab_complete_type()
521 if ((flags & MDB_TABC_MEMBERS) && rkind != CTF_K_STRUCT && in tab_complete_type()
522 rkind != CTF_K_UNION) in tab_complete_type()
525 if ((flags & MDB_TABC_NOPOINT) && rkind == CTF_K_POINTER) in tab_complete_type()
528 if ((flags & MDB_TABC_NOARRAY) && rkind == CTF_K_ARRAY) in tab_complete_type()
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_parser.c344 uint_t rkind = ctf_type_kind(rfp, rbase); in dt_type_promote() local
351 assert(rkind == CTF_K_INTEGER || rkind == CTF_K_ENUM); in dt_type_promote()
358 if (rkind == CTF_K_ENUM) { in dt_type_promote()
1061 uint_t lkind, rkind; in dt_node_is_ptrcompat() local
1107 rkind = ctf_type_kind(rfp, rbase); in dt_node_is_ptrcompat()
1109 if (rkind == CTF_K_POINTER) { in dt_node_is_ptrcompat()
1112 } else if (rkind == CTF_K_ARRAY && in dt_node_is_ptrcompat()
1125 lkind = rkind; in dt_node_is_ptrcompat()
1130 rkind = lkind; in dt_node_is_ptrcompat()
1144 (rkind == CTF_K_POINTER || rkind == CTF_K_ARRAY) && in dt_node_is_ptrcompat()
[all …]
/illumos-gate/usr/src/common/ctf/
H A Dctf_types.c764 uint_t lkind, rkind; in ctf_type_compat() local
773 rkind = ctf_type_kind(rfp, rtype); in ctf_type_compat()
775 if (lkind != rkind || in ctf_type_compat()
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dtypegraph.c860 int rkind; in typegraph_couldbe() local
886 rkind = mdb_ctf_type_kind(rtype); in typegraph_couldbe()
888 if (rkind == CTF_K_STRUCT || rkind == CTF_K_UNION) { in typegraph_couldbe()