HomeSort by: relevance | last modified time | path
    Searched defs:fmt_left (Results 1 - 1 of 1) sorted by relevancy

  /src/lib/libc/gen/
xsyslog.c 152 size_t tbuf_left, fmt_left, msgsdlen; local in function:_vxsyslogp_r
265 for (t = fmt_cpy, fmt_left = FMT_LEN; (ch = *fmt) != '\0'; ++fmt) {
270 prlen = snprintf_ss(t, fmt_left, "Error %d",
273 prlen = strlcpy(t, buf, fmt_left);
274 if (prlen >= fmt_left)
275 prlen = fmt_left - 1;
278 fmt_left -= prlen;
279 } else if (ch == '%' && fmt[1] == '%' && fmt_left > 2) {
283 fmt_left -= 2;
285 if (fmt_left > 1)
    [all...]

Completed in 11 milliseconds