Searched refs:dump_out_append (Results 1 – 2 of 2) sorted by relevance
/external/rust/crates/grpcio-sys/grpc/src/core/lib/gpr/ |
D | string.cc | 90 static void dump_out_append(dump_out* out, char c) { in dump_out_append() function 106 if (cur != beg) dump_out_append(out, ' '); in hexdump() 107 dump_out_append(out, hex[*cur >> 4]); in hexdump() 108 dump_out_append(out, hex[*cur & 0xf]); in hexdump() 118 dump_out_append(out, ' '); in asciidump() 119 dump_out_append(out, '\''); in asciidump() 122 dump_out_append( in asciidump() 126 dump_out_append(out, '\''); in asciidump() 139 dump_out_append(&out, 0); in gpr_dump_return_len()
|
/external/grpc-grpc/src/core/lib/gpr/ |
D | string.cc | 90 static void dump_out_append(dump_out* out, char c) { in dump_out_append() function 106 if (cur != beg) dump_out_append(out, ' '); in hexdump() 107 dump_out_append(out, hex[*cur >> 4]); in hexdump() 108 dump_out_append(out, hex[*cur & 0xf]); in hexdump() 118 dump_out_append(out, ' '); in asciidump() 119 dump_out_append(out, '\''); in asciidump() 122 dump_out_append(out, (isprint(*cur) ? *(char*)cur : '.')); in asciidump() 125 dump_out_append(out, '\''); in asciidump() 137 dump_out_append(&out, 0); in gpr_dump()
|