Searched refs:brotli_decode_dso (Results 1 – 1 of 1) sorted by relevance
/freebsd/crypto/openssl/crypto/comp/ |
H A D | c_brotli.c | 88 static DSO *brotli_decode_dso = NULL; variable 304 brotli_decode_dso = DSO_load(NULL, LIBBROTLIDEC, NULL, 0); in DEFINE_RUN_ONCE_STATIC() 305 if (brotli_decode_dso != NULL) { in DEFINE_RUN_ONCE_STATIC() 306 … p_decode_init = (decode_init_ft)DSO_bind_func(brotli_decode_dso, "BrotliDecoderCreateInstance"); in DEFINE_RUN_ONCE_STATIC() 307 …p_decode_stream = (decode_stream_ft)DSO_bind_func(brotli_decode_dso, "BrotliDecoderDecompressStrea… in DEFINE_RUN_ONCE_STATIC() 308 …p_decode_has_more = (decode_has_more_ft)DSO_bind_func(brotli_decode_dso, "BrotliDecoderHasMoreOutp… in DEFINE_RUN_ONCE_STATIC() 309 … p_decode_end = (decode_end_ft)DSO_bind_func(brotli_decode_dso, "BrotliDecoderDestroyInstance"); in DEFINE_RUN_ONCE_STATIC() 310 … p_decode_error = (decode_error_ft)DSO_bind_func(brotli_decode_dso, "BrotliDecoderGetErrorCode"); in DEFINE_RUN_ONCE_STATIC() 311 …p_decode_error_string = (decode_error_string_ft)DSO_bind_func(brotli_decode_dso, "BrotliDecoderErr… in DEFINE_RUN_ONCE_STATIC() 312 …p_decode_is_finished = (decode_is_finished_ft)DSO_bind_func(brotli_decode_dso, "BrotliDecoderIsFin… in DEFINE_RUN_ONCE_STATIC() [all …]
|