Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_printf.c1575 if (dtp->dt_sprintf_buf != NULL) in dtrace_sprintf()
1576 free(dtp->dt_sprintf_buf); in dtrace_sprintf()
1578 if ((dtp->dt_sprintf_buf = malloc(size)) == NULL) in dtrace_sprintf()
1581 bzero(dtp->dt_sprintf_buf, size); in dtrace_sprintf()
1588 free(dtp->dt_sprintf_buf); in dtrace_sprintf()
1611 if (system(dtp->dt_sprintf_buf) == -1) in dtrace_system()
1640 assert(strcmp(dtp->dt_sprintf_buf, DT_FREOPEN_RESTORE) == 0); in dtrace_freopen()
1657 filename = dtp->dt_sprintf_buf; in dtrace_freopen()
H A Ddt_subr.c563 assert(dtp->dt_sprintf_buf != NULL); in dt_printf()
565 buf = &dtp->dt_sprintf_buf[len = strlen(dtp->dt_sprintf_buf)]; in dt_printf()
H A Ddt_impl.h307 char *dt_sprintf_buf; /* buffer for dtrace_sprintf() */ member