Searched refs:ctt_info (Results 1 - 7 of 7) sorted by relevance

/macosx-10.9.5/dtrace-118.1/libctf/
H A Dctf_types.c75 kind = LCTF_INFO_KIND(fp, tp->ctt_info);
84 for (n = LCTF_INFO_VLEN(fp, tp->ctt_info); n != 0; n--, mp++) {
95 for (n = LCTF_INFO_VLEN(fp, tp->ctt_info); n != 0; n--, lmp++) {
126 if (LCTF_INFO_KIND(fp, tp->ctt_info) != CTF_K_ENUM)
133 for (n = LCTF_INFO_VLEN(fp, tp->ctt_info); n != 0; n--, ep++) {
154 if (CTF_INFO_ISROOT(tp->ctt_info) &&
177 switch (LCTF_INFO_KIND(fp, tp->ctt_info)) {
332 switch (LCTF_INFO_KIND(fp, tp->ctt_info)) {
380 switch (LCTF_INFO_KIND(fp, tp->ctt_info)) {
392 uint_t n = LCTF_INFO_VLEN(fp, tp->ctt_info);
[all...]
H A Dctf_create.c230 uint_t kind = CTF_INFO_KIND(dtd->dtd_data.ctt_info);
231 uint_t vlen = CTF_INFO_VLEN(dtd->dtd_data.ctt_info);
288 uint_t kind = CTF_INFO_KIND(dtd->dtd_data.ctt_info);
289 uint_t vlen = CTF_INFO_VLEN(dtd->dtd_data.ctt_info);
453 switch (CTF_INFO_KIND(dtd->dtd_data.ctt_info)) {
470 CTF_INFO_VLEN(dtd->dtd_data.ctt_info));
605 dtd->dtd_data.ctt_info = CTF_TYPE_INFO(kind, flag, 0);
624 dtd->dtd_data.ctt_info = CTF_TYPE_INFO(kind, flag, 0);
662 dtd->dtd_data.ctt_info = CTF_TYPE_INFO(CTF_K_ARRAY, flag, 0);
677 if (dtd == NULL || CTF_INFO_KIND(dtd->dtd_data.ctt_info) !
[all...]
H A Dctf_decl.c102 switch (kind = LCTF_INFO_KIND(fp, tp->ctt_info)) {
H A Dctf_open.c347 ushort_t kind = LCTF_INFO_KIND(fp, tp->ctt_info);
348 ulong_t vlen = LCTF_INFO_VLEN(fp, tp->ctt_info);
467 ushort_t kind = LCTF_INFO_KIND(fp, tp->ctt_info);
468 ulong_t vlen = LCTF_INFO_VLEN(fp, tp->ctt_info);
644 if (LCTF_INFO_KIND(fp, tp->ctt_info) == CTF_K_TYPEDEF &&
/macosx-10.9.5/dtrace-118.1/tools/ctfconvert/
H A Dctf.c245 SWAP16(ctt->ctt_info);
259 SWAP16(cts->ctt_info);
275 SWAP16(cts->ctt_info);
316 ctt.ctt_info = CTF_TYPE_INFO(0, 0, 0);
330 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_INTEGER,
333 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_FLOAT, isroot, 1);
360 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_POINTER, isroot, 0);
366 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_ARRAY, isroot, 1);
388 ctt.ctt_info = CTF_TYPE_INFO(CTF_K_STRUCT, isroot, i);
390 ctt.ctt_info
[all...]
H A Ddump.c560 ulong_t i, n = CTF_INFO_VLEN(tp->ctt_info);
562 int kind = CTF_INFO_KIND(tp->ctt_info);
575 "[<"[CTF_INFO_ISROOT(tp->ctt_info)], id,
576 "]>"[CTF_INFO_ISROOT(tp->ctt_info)]);
/macosx-10.9.5/dtrace-118.1/sys/
H A Dctf.h162 ushort_t ctt_info; /* encoded kind, variant length (see below) */ member in struct:ctf_stype
179 ushort_t ctt_info; /* encoded kind, variant length (see below) */ member in struct:ctf_type
192 * The following macros compose and decompose values for ctt_info and
196 * ctt_info: | kind | isroot | vlen |
200 * kind = CTF_INFO_KIND(c.ctt_info); <-- CTF_K_* value (see below)
201 * vlen = CTF_INFO_VLEN(c.ctt_info); <-- length of variable data list
206 * c.ctt_info = CTF_TYPE_INFO(kind, vlen);

Completed in 134 milliseconds