Searched refs:ctf_bufopen (Results 1 - 8 of 8) sorted by relevance
/illumos-gate/usr/src/uts/common/ctf/ |
H A D | ctf_mod.c | 159 if ((fp = ctf_bufopen(&ctfsect, &symsect, &strsect, error)) == NULL)
|
/illumos-gate/usr/src/lib/libctf/common/ |
H A D | ctf_lib.c | 70 * that multiple calls to ctf_bufopen() do not need to reopen the library. 99 * The ctf_bufopen() routine calls these subroutines, defined by <sys/zmod.h>, 240 if ((fp = ctf_bufopen(&ctfsect, NULL, NULL, errp)) == NULL) 407 * call ctf_bufopen() to do the rest of the work. 421 fp = ctf_bufopen(&ctfsect, &symsect, &strsect, errp); 423 fp = ctf_bufopen(&ctfsect, NULL, NULL, errp);
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | ctf_api.h | 66 * filling in ctf_sect_t structures and passing them to ctf_bufopen(): 149 extern ctf_file_t *ctf_bufopen(const ctf_sect_t *, const ctf_sect_t *,
|
/illumos-gate/usr/src/common/ctf/ |
H A D | ctf_open.c | 544 ctf_bufopen(const ctf_sect_t *ctfsect, const ctf_sect_t *symsect, function 572 ctf_dprintf("ctf_bufopen: magic=0x%x version=%u\n", 612 ctf_dprintf("ctf_bufopen: uncompressed size=%lu\n", (ulong_t)size); 725 ctf_dprintf("ctf_bufopen: parent name %s (label %s)\n", 793 * container if they exist and passing those into ctf_bufopen. To copy those, we 810 * the name, as ctf_bufopen will take care of that. 857 fp = ctf_bufopen(ctp, symp, strp, &err);
|
H A D | ctf_create.c | 47 * ctf_bufopen() on it. If ctf_bufopen succeeds, we mark the new container r/w 73 if ((fp = ctf_bufopen(&cts, NULL, NULL, errp)) == NULL) { 221 * containing the definitions, and then call ctf_bufopen() on it. This not 222 * only leverages ctf_bufopen(), but also avoids having to bifurcate the rest 227 * ctf_bufopen() will return a new ctf_file_t, but we want to keep the fp 228 * constant for the caller, so after ctf_bufopen() returns, we use bcopy to 414 * Finally, we are ready to ctf_bufopen() the new container. If this 426 if ((nfp = ctf_bufopen(&cts, NULL, NULL, &err)) == NULL) { 456 * NOTE: This code must be kept in sync with the code in ctf_bufopen() [all...] |
/illumos-gate/usr/src/lib/libdtrace/common/ |
H A D | dt_module.c | 827 dmp->dm_ctfp = ctf_bufopen(&dmp->dm_ctdata,
|
/illumos-gate/usr/src/cmd/mdb/common/mdb/ |
H A D | mdb_ctf.c | 1702 return (ctf_bufopen(&ctdata, &symtab, &strtab, errp));
|
/illumos-gate/usr/src/lib/libproc/common/ |
H A D | Psymtab.c | 788 fptr->file_ctfp = ctf_bufopen(&ctdata, &symtab, &strtab, &err); 790 dprintf("ctf_bufopen() failed, error code %d\n", err);
|
Completed in 65 milliseconds