Searched refs:json_writer_output_char (Results 1 – 4 of 4) sorted by relevance
/external/grpc-grpc/src/core/lib/json/ |
D | json_writer.cc | 25 static void json_writer_output_char(grpc_json_writer* writer, char c) { in json_writer_output_char() function 60 json_writer_output_char(writer, ' '); in json_writer_output_indent() 80 json_writer_output_char(writer, '\n'); in json_writer_value_end() 82 json_writer_output_char(writer, ','); in json_writer_value_end() 84 json_writer_output_char(writer, '\n'); in json_writer_value_end() 92 json_writer_output_char(writer, hex[(utf16 >> 12) & 0x0f]); in json_writer_escape_utf16() 93 json_writer_output_char(writer, hex[(utf16 >> 8) & 0x0f]); in json_writer_escape_utf16() 94 json_writer_output_char(writer, hex[(utf16 >> 4) & 0x0f]); in json_writer_escape_utf16() 95 json_writer_output_char(writer, hex[(utf16)&0x0f]); in json_writer_escape_utf16() 100 json_writer_output_char(writer, '"'); in json_writer_escape_string() [all …]
|
D | json_string.cc | 80 static void json_writer_output_char(void* userdata, char c) { in json_writer_output_char() function 351 json_writer_output_char, json_writer_output_string, 364 json_writer_output_char(&state, 0); in grpc_json_dump_to_string()
|
/external/grpc-grpc/test/core/json/ |
D | json_rewrite_test.cc | 51 static void json_writer_output_char(void* userdata, char c) { in json_writer_output_char() function 64 json_writer_output_char(userdata, *str++); in json_writer_output_string() 72 json_writer_output_char(userdata, str[i]); in json_writer_output_string_with_len() 76 grpc_json_writer_vtable writer_vtable = {json_writer_output_char,
|
D | json_rewrite.cc | 49 static void json_writer_output_char(void* userdata, char c) { in json_writer_output_char() function 65 grpc_json_writer_vtable writer_vtable = {json_writer_output_char,
|