Lines Matching refs:json_write_char
313 static void json_write_char(OSSL_JSON_ENC *json, char ch) in json_write_char() function
342 json_write_char(json, '\n'); in json_indent()
366 json_write_char(json, ','); in json_pre_item()
374 json_write_char(json, '\x1E'); in json_pre_item()
398 json_write_char(json, '\n'); in json_post_item()
412 json_write_char(json, ch); in composite_begin()
448 json_write_char(json, ch); in composite_end()
494 json_write_char(json, ','); in ossl_json_key()
508 json_write_char(json, ':'); in ossl_json_key()
510 json_write_char(json, ' '); in ossl_json_key()
546 json_write_char(json, '"'); in json_u64()
557 json_write_char(json, '"'); in json_u64()
585 json_write_char(json, '"'); in ossl_json_i64()
587 json_write_char(json, '-'); in ossl_json_i64()
595 json_write_char(json, '"'); in ossl_json_i64()
646 json_write_char(json, '"'); in json_write_qstring_inner()
702 json_write_char(json, c); in json_write_qstring_inner()
711 json_write_char(json, '"'); in json_write_qstring_inner()
756 json_write_char(json, '"'); in ossl_json_str_hex()
760 json_write_char(json, hex_digit(c >> 4)); in ossl_json_str_hex()
761 json_write_char(json, hex_digit(c & 0x0F)); in ossl_json_str_hex()
764 json_write_char(json, '"'); in ossl_json_str_hex()