Searched refs:printbuffer (Results 1 – 4 of 4) sorted by relevance
/external/u-boot/common/ |
D | console.c | 296 char printbuffer[CONFIG_SYS_PBSIZE]; in serial_printf() local 303 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args); in serial_printf() 306 serial_puts(printbuffer); in serial_printf() 366 char printbuffer[CONFIG_SYS_PBSIZE]; in fprintf() local 373 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args); in fprintf() 377 fputs(file, printbuffer); in fprintf()
|
/external/u-boot/lib/ |
D | vsprintf.c | 781 char printbuffer[CONFIG_SYS_PBSIZE]; in printf() local 789 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args); in printf() 796 puts(printbuffer); in printf() 803 char printbuffer[CONFIG_SYS_PBSIZE]; in vprintf() local 809 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args); in vprintf() 815 puts(printbuffer); in vprintf()
|
/external/iperf3/src/ |
D | cjson.c | 334 } printbuffer; typedef 337 static unsigned char* ensure(printbuffer * const p, size_t needed) in ensure() 417 static void update_offset(printbuffer * const buffer) in update_offset() 430 static cJSON_bool print_number(const cJSON * const item, printbuffer * const output_buffer) in print_number() 783 static cJSON_bool print_string_ptr(const unsigned char * const input, printbuffer * const output_bu… in print_string_ptr() 905 static cJSON_bool print_string(const cJSON * const item, printbuffer * const p) in print_string() 912 static cJSON_bool print_value(const cJSON * const item, printbuffer * const output_buffer); 914 static cJSON_bool print_array(const cJSON * const item, printbuffer * const output_buffer); 916 static cJSON_bool print_object(const cJSON * const item, printbuffer * const output_buffer); 1031 printbuffer buffer[1]; in print() [all …]
|
/external/u-boot/post/ |
D | post.c | 395 char printbuffer[CONFIG_SYS_PBSIZE]; in post_log() local 402 vsprintf(printbuffer, format, args); in post_log() 406 puts(printbuffer); in post_log()
|