HomeSort by: relevance | last modified time | path
    Searched defs:brotli_decode_dso (Results 1 - 1 of 1) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/comp/
c_brotli.c 88 static DSO *brotli_decode_dso = NULL; variable
304 brotli_decode_dso = DSO_load(NULL, LIBBROTLIDEC, NULL, 0);
305 if (brotli_decode_dso != NULL) {
306 p_decode_init = (decode_init_ft)DSO_bind_func(brotli_decode_dso, "BrotliDecoderCreateInstance");
307 p_decode_stream = (decode_stream_ft)DSO_bind_func(brotli_decode_dso, "BrotliDecoderDecompressStream");
308 p_decode_has_more = (decode_has_more_ft)DSO_bind_func(brotli_decode_dso, "BrotliDecoderHasMoreOutput");
309 p_decode_end = (decode_end_ft)DSO_bind_func(brotli_decode_dso, "BrotliDecoderDestroyInstance");
310 p_decode_error = (decode_error_ft)DSO_bind_func(brotli_decode_dso, "BrotliDecoderGetErrorCode");
311 p_decode_error_string = (decode_error_string_ft)DSO_bind_func(brotli_decode_dso, "BrotliDecoderErrorString");
312 p_decode_is_finished = (decode_is_finished_ft)DSO_bind_func(brotli_decode_dso, "BrotliDecoderIsFinished")
    [all...]

Completed in 20 milliseconds