HomeSort by: relevance | last modified time | path
    Searched refs:tbuf_left (Results 1 - 4 of 4) sorted by relevancy

  /src/lib/libc/gen/
syslog_private.h 34 if (prlen >= tbuf_left) \
35 prlen = tbuf_left - 1; \
37 tbuf_left -= prlen; \
syslog_ss.c 44 timefun_ss(char *p, size_t tbuf_left)
46 return snprintf_ss(p, tbuf_left, "-");
53 prlen = strftime(p, tbuf_left, "%FT%TZ", &tmnow);
xsyslog.c 152 size_t tbuf_left, fmt_left, msgsdlen; local in function:_vxsyslogp_r
179 tbuf_left = TBUF_LEN;
181 prlen = snprintf_ss(p, tbuf_left, "<%d>1 ", pri);
184 prlen = (*fun->timefun)(p, tbuf_left);
196 prlen = snprintf_ss(p, tbuf_left, " %s ", data->log_hostname);
202 prlen = snprintf_ss(p, tbuf_left, "%s ",
215 prlen = snprintf_ss(p, tbuf_left, "%d ", getpid());
228 prlen = snprintf_ss(p, tbuf_left, "- ");
293 prlen = (*fun->prfun)(p, tbuf_left, fmt_cpy, ap);
syslog.c 82 timefun(char *p, size_t tbuf_left)
91 return snprintf_ss(p, tbuf_left, "-");
98 prlen = strftime(p, tbuf_left, "%FT%T", &tmnow);
100 prlen = snprintf(p, tbuf_left, ".%06ld", (long)tv.tv_usec);
102 prlen = strftime(p, tbuf_left-1, "%z", &tmnow);

Completed in 11 milliseconds