Home
last modified time | relevance | path

Searched refs:printf_buffer (Results 1 – 2 of 2) sorted by relevance

/external/pigweed/pw_string/
Dtype_to_string_test.cc250 char printf_buffer[6]; in TEST() local
251 int written = std::snprintf(printf_buffer, sizeof(printf_buffer), "%d", i); in TEST()
254 ASSERT_STREQ(printf_buffer, buffer); in TEST()
261 char printf_buffer[5]; in TEST() local
262 int written = std::snprintf(printf_buffer, sizeof(printf_buffer), "%u", i); in TEST()
265 ASSERT_STREQ(printf_buffer, buffer); in TEST()
/external/libcups/cups/
Dfile.c54 char *printf_buffer; /* cupsFilePrintf buffer */ member
455 if (fp->printf_buffer) in cupsFileClose()
456 free(fp->printf_buffer); in cupsFileClose()
1365 if (!fp->printf_buffer) in cupsFilePrintf()
1371 if ((fp->printf_buffer = malloc(1024)) == NULL) in cupsFilePrintf()
1378 bytes = vsnprintf(fp->printf_buffer, fp->printf_size, format, ap); in cupsFilePrintf()
1393 if ((temp = realloc(fp->printf_buffer, (size_t)(bytes + 1))) == NULL) in cupsFilePrintf()
1396 fp->printf_buffer = temp; in cupsFilePrintf()
1400 bytes = vsnprintf(fp->printf_buffer, fp->printf_size, format, ap); in cupsFilePrintf()
1406 if (cups_write(fp, fp->printf_buffer, (size_t)bytes) < 0) in cupsFilePrintf()
[all …]