Lines Matching refs:json_write_char
312 static void json_write_char(OSSL_JSON_ENC *json, char ch) in json_write_char() function
341 json_write_char(json, '\n'); in json_indent()
365 json_write_char(json, ','); in json_pre_item()
373 json_write_char(json, '\x1E'); in json_pre_item()
397 json_write_char(json, '\n'); in json_post_item()
411 json_write_char(json, ch); in composite_begin()
447 json_write_char(json, ch); in composite_end()
493 json_write_char(json, ','); in ossl_json_key()
507 json_write_char(json, ':'); in ossl_json_key()
509 json_write_char(json, ' '); in ossl_json_key()
545 json_write_char(json, '"'); in json_u64()
556 json_write_char(json, '"'); in json_u64()
584 json_write_char(json, '"'); in ossl_json_i64()
586 json_write_char(json, '-'); in ossl_json_i64()
594 json_write_char(json, '"'); in ossl_json_i64()
618 json_write_char(json, '"'); in json_write_qstring_inner()
674 json_write_char(json, c); in json_write_qstring_inner()
683 json_write_char(json, '"'); in json_write_qstring_inner()
728 json_write_char(json, '"'); in ossl_json_str_hex()
732 json_write_char(json, hex_digit(c >> 4)); in ossl_json_str_hex()
733 json_write_char(json, hex_digit(c & 0x0F)); in ossl_json_str_hex()
736 json_write_char(json, '"'); in ossl_json_str_hex()