Home
last modified time | relevance | path

Searched refs:ctl_prefix (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/common/ctf/
H A Dctf_lookup.c134 for (lp = fp->ctf_lookups; lp->ctl_prefix != NULL; lp++) { in ctf_lookup_by_name()
135 if (lp->ctl_prefix[0] == '\0' || in ctf_lookup_by_name()
137 lp->ctl_prefix, (size_t)(q - p)) == 0)) { in ctf_lookup_by_name()
158 if (lp->ctl_prefix == NULL) { in ctf_lookup_by_name()
H A Dctf_open.c762 fp->ctf_lookups[0].ctl_prefix = "struct"; in ctf_bufopen()
763 fp->ctf_lookups[0].ctl_len = strlen(fp->ctf_lookups[0].ctl_prefix); in ctf_bufopen()
765 fp->ctf_lookups[1].ctl_prefix = "union"; in ctf_bufopen()
766 fp->ctf_lookups[1].ctl_len = strlen(fp->ctf_lookups[1].ctl_prefix); in ctf_bufopen()
768 fp->ctf_lookups[2].ctl_prefix = "enum"; in ctf_bufopen()
769 fp->ctf_lookups[2].ctl_len = strlen(fp->ctf_lookups[2].ctl_prefix); in ctf_bufopen()
771 fp->ctf_lookups[3].ctl_prefix = _CTF_NULLSTR; in ctf_bufopen()
772 fp->ctf_lookups[3].ctl_len = strlen(fp->ctf_lookups[3].ctl_prefix); in ctf_bufopen()
774 fp->ctf_lookups[4].ctl_prefix = NULL; in ctf_bufopen()
H A Dctf_impl.h104 const char *ctl_prefix; /* string prefix for this lookup */ member