Searched refs:OSSL_JSON_ENC (Results 1 – 4 of 4) sorted by relevance
| /src/crypto/openssl/include/internal/ |
| H A D | json_enc.h | 40 } OSSL_JSON_ENC; typedef 70 int ossl_json_init(OSSL_JSON_ENC *json, BIO *bio, uint32_t flags); 78 void ossl_json_cleanup(OSSL_JSON_ENC *json); 96 int ossl_json_reset(OSSL_JSON_ENC *json); 107 int ossl_json_flush(OSSL_JSON_ENC *json); 117 int ossl_json_flush_cleanup(OSSL_JSON_ENC *json); 125 int ossl_json_set0_sink(OSSL_JSON_ENC *json, BIO *bio); 147 int ossl_json_in_error(OSSL_JSON_ENC *json); 176 void ossl_json_object_begin(OSSL_JSON_ENC *json); 179 void ossl_json_object_end(OSSL_JSON_ENC *json); [all …]
|
| /src/crypto/openssl/ssl/quic/ |
| H A D | json_enc.c | 116 static int json_ensure_stack_size(OSSL_JSON_ENC *json, size_t num_bytes) in json_ensure_stack_size() 140 static int json_push(OSSL_JSON_ENC *json, unsigned int v) in json_push() 173 static int json_pop(OSSL_JSON_ENC *json) in json_pop() 191 static int json_peek(OSSL_JSON_ENC *json) in json_peek() 221 static ossl_inline int in_ijson(const OSSL_JSON_ENC *json) in in_ijson() 226 static ossl_inline int in_seq(const OSSL_JSON_ENC *json) in in_seq() 231 static ossl_inline int in_pretty(const OSSL_JSON_ENC *json) in in_pretty() 236 int ossl_json_init(OSSL_JSON_ENC *json, BIO *bio, uint32_t flags) in ossl_json_init() 248 void ossl_json_cleanup(OSSL_JSON_ENC *json) in ossl_json_cleanup() 258 int ossl_json_flush_cleanup(OSSL_JSON_ENC *json) in ossl_json_flush_cleanup() [all …]
|
| H A D | qlog.c | 42 OSSL_JSON_ENC json;
|
| /src/crypto/openssl/test/ |
| H A D | json_test.c | 17 OSSL_JSON_ENC j; 95 typedef void (*fp_type)(OSSL_JSON_ENC *); 96 typedef void (*fp_p_type)(OSSL_JSON_ENC *, const void *); 97 typedef void (*fp_i_type)(OSSL_JSON_ENC *, int); 98 typedef void (*fp_u64_type)(OSSL_JSON_ENC *, uint64_t); 99 typedef void (*fp_i64_type)(OSSL_JSON_ENC *, int64_t); 100 typedef void (*fp_d_type)(OSSL_JSON_ENC *, double); 101 typedef void (*fp_pz_type)(OSSL_JSON_ENC *, const void *, size_t);
|