Lines Matching refs:NULL

61     NULL
96 static createCStream_ft p_createCStream = NULL;
97 static initCStream_ft p_initCStream = NULL;
98 static freeCStream_ft p_freeCStream = NULL;
99 static compressStream2_ft p_compressStream2 = NULL;
100 static flushStream_ft p_flushStream = NULL;
101 static endStream_ft p_endStream = NULL;
102 static compress_ft p_compress = NULL;
103 static createDStream_ft p_createDStream = NULL;
104 static initDStream_ft p_initDStream = NULL;
105 static freeDStream_ft p_freeDStream = NULL;
106 static decompressStream_ft p_decompressStream = NULL;
107 static decompress_ft p_decompress = NULL;
108 static isError_ft p_isError = NULL;
109 static getErrorName_ft p_getErrorName = NULL;
110 static DStreamInSize_ft p_DStreamInSize = NULL;
111 static CStreamInSize_ft p_CStreamInSize = NULL;
113 static DSO *zstd_dso = NULL;
143 if (state == NULL) in zstd_stateful_init()
151 if (state->compressor == NULL) in zstd_stateful_init()
160 if (state->decompressor == NULL) in zstd_stateful_init()
177 if (state != NULL) { in zstd_stateful_finish()
181 ctx->data = NULL; in zstd_stateful_finish()
202 if (state == NULL) in zstd_stateful_compress_block()
261 if (state == NULL) in zstd_stateful_expand_block()
370 zstd_dso = DSO_load(NULL, LIBZSTD, NULL, 0); in DEFINE_RUN_ONCE_STATIC()
371 if (zstd_dso != NULL) { in DEFINE_RUN_ONCE_STATIC()
390 if (p_createCStream == NULL || p_initCStream == NULL || p_freeCStream == NULL in DEFINE_RUN_ONCE_STATIC()
391 || p_compressStream2 == NULL || p_flushStream == NULL || p_endStream == NULL in DEFINE_RUN_ONCE_STATIC()
392 || p_compress == NULL || p_createDStream == NULL || p_initDStream == NULL in DEFINE_RUN_ONCE_STATIC()
393 || p_freeDStream == NULL || p_decompressStream == NULL || p_decompress == NULL in DEFINE_RUN_ONCE_STATIC()
394 || p_isError == NULL || p_getErrorName == NULL || p_DStreamInSize == NULL in DEFINE_RUN_ONCE_STATIC()
395 || p_CStreamInSize == NULL) { in DEFINE_RUN_ONCE_STATIC()
406 COMP_METHOD *meth = NULL; in COMP_zstd()
417 COMP_METHOD *meth = NULL; in COMP_zstd_oneshot()
431 zstd_dso = NULL; in ossl_comp_zstd_cleanup()
432 p_createCStream = NULL; in ossl_comp_zstd_cleanup()
433 p_initCStream = NULL; in ossl_comp_zstd_cleanup()
434 p_freeCStream = NULL; in ossl_comp_zstd_cleanup()
435 p_compressStream2 = NULL; in ossl_comp_zstd_cleanup()
436 p_flushStream = NULL; in ossl_comp_zstd_cleanup()
437 p_endStream = NULL; in ossl_comp_zstd_cleanup()
438 p_compress = NULL; in ossl_comp_zstd_cleanup()
439 p_createDStream = NULL; in ossl_comp_zstd_cleanup()
440 p_initDStream = NULL; in ossl_comp_zstd_cleanup()
441 p_freeDStream = NULL; in ossl_comp_zstd_cleanup()
442 p_decompressStream = NULL; in ossl_comp_zstd_cleanup()
443 p_decompress = NULL; in ossl_comp_zstd_cleanup()
444 p_isError = NULL; in ossl_comp_zstd_cleanup()
445 p_getErrorName = NULL; in ossl_comp_zstd_cleanup()
446 p_DStreamInSize = NULL; in ossl_comp_zstd_cleanup()
447 p_CStreamInSize = NULL; in ossl_comp_zstd_cleanup()
488 NULL, /* bio_zstd_puts, */
489 NULL, /* bio_zstd_gets, */
503 return NULL; in BIO_f_zstd()
513 if (zstd_dso == NULL) { in bio_zstd_new()
519 if (ctx == NULL) { in bio_zstd_new()
529 if (ctx->decompress.state == NULL) in bio_zstd_new()
539 if (ctx->compress.state == NULL) in bio_zstd_new()
560 if (bi == NULL) in bio_zstd_free()
564 if (ctx != NULL) { in bio_zstd_free()
571 BIO_set_data(bi, NULL); in bio_zstd_free()
585 if (out == NULL || outl <= 0) in bio_zstd_read()
590 if (ctx->decompress.buffer == NULL) { in bio_zstd_read()
592 if (ctx->decompress.buffer == NULL) { in bio_zstd_read()
644 if (in == NULL || inl <= 0) in bio_zstd_write()
650 if (ctx->compress.outbuf.dst == NULL) { in bio_zstd_write()
652 if (ctx->compress.outbuf.dst == NULL) { in bio_zstd_write()
708 if (ctx->compress.outbuf.dst == NULL) in bio_zstd_flush()
752 if (next == NULL) in bio_zstd_ctrl()
774 if (ptr != NULL) { in bio_zstd_ctrl()
785 if (ctx->decompress.buffer != NULL) { in bio_zstd_ctrl()
787 if (tmp == NULL) in bio_zstd_ctrl()
797 if (ctx->compress.outbuf.dst != NULL) { in bio_zstd_ctrl()
799 if (tmp == NULL) in bio_zstd_ctrl()
840 if (next == NULL) in bio_zstd_callback_ctrl()