Lines Matching refs:ap
1569 va_list ap;
1572 va_start(ap, fmt);
1573 if ((new_size = vsnprintf(cb->cb_buf, cb->cb_size, fmt, ap)) >=
1579 (void) vsnprintf(cb->cb_buf, cb->cb_size, fmt, ap);
1581 va_end(ap);
1595 va_list ap;
1602 va_start(ap, fmt);
1603 new_len = vsnprintf(size_buf, sizeof (size_buf), fmt, ap);
1614 (void) vsnprintf(&cb->cb_buf[old_len], cb->cb_size - old_len, fmt, ap);
1615 va_end(ap);
1768 do_dprintf(const char *format, va_list ap)
1772 (void) vfprintf(stderr, format, ap);