Lines Matching refs:a_format
223 pkgstrPrintf_r(char *a_buf, int a_bufLen, char *a_format, ...) in pkgstrPrintf_r() argument
230 assert(a_format != (char *)NULL); in pkgstrPrintf_r()
231 assert(*a_format != '\0'); in pkgstrPrintf_r()
237 va_start(ap, a_format); in pkgstrPrintf_r()
238 vres = vsnprintf(a_buf, a_bufLen-1, a_format, ap); in pkgstrPrintf_r()
266 pkgstrPrintf(char *a_format, ...) in pkgstrPrintf() argument
275 assert(a_format != (char *)NULL); in pkgstrPrintf()
276 assert(*a_format != '\0'); in pkgstrPrintf()
280 va_start(ap, a_format); in pkgstrPrintf()
281 vres = vsnprintf(bfr, 1, a_format, ap); in pkgstrPrintf()
297 va_start(ap, a_format); in pkgstrPrintf()
298 vres = vsnprintf(rstr, vres+1, a_format, ap); in pkgstrPrintf()