HomeSort by: relevance | last modified time | path
    Searched refs:decoderctx (Results 1 - 18 of 18) sorted by relevancy

  /src/crypto/external/bsd/openssl/dist/include/crypto/
decoder.h 30 ossl_decoder_instance_new(OSSL_DECODER *decoder, void *decoderctx);
  /src/crypto/external/apache2/openssl/dist/crypto/encode_decode/
decoder_lib.c 219 void *decoderctx; local
226 decoderctx = decoder->newctx(provctx);
227 if (decoderctx == NULL)
234 if (!decoder->set_ctx_params(decoderctx, params)) {
235 decoder->freectx(decoderctx);
239 return ossl_decoder_instance_new(decoder, decoderctx);
243 void *decoderctx)
294 decoder_inst->decoderctx = decoderctx;
305 decoder_inst->decoder->freectx(decoder_inst->decoderctx);
385 void *decoderctx = NULL; local
447 void *decoderctx = NULL; local
748 void *decoderctx = NULL; local
    [all...]
encoder_local.h 108 void *decoderctx; /* Never NULL */ member in struct:ossl_decoder_instance_st
decoder_pkey.c 77 void *decoderctx = OSSL_DECODER_INSTANCE_get_decoder_ctx(decoder_inst); local
169 (void)decoder->export_object(decoderctx,
238 void *decoderctx = NULL; local
251 if ((decoderctx = decoder->newctx(provctx)) == NULL) {
256 if ((di = ossl_decoder_instance_new(decoder, decoderctx)) == NULL) {
257 decoder->freectx(decoderctx);
decoder_meth.c 655 OSSL_DECODER *decoderctx = OSSL_DECODER_INSTANCE_get_decoder_ctx(decoder_inst); local
657 if (decoderctx == NULL || decoder->set_ctx_params == NULL)
659 if (!decoder->set_ctx_params(decoderctx, params))
  /src/crypto/external/apache2/openssl/dist/include/crypto/
decoder.h 29 ossl_decoder_instance_new(OSSL_DECODER *decoder, void *decoderctx);
  /src/crypto/external/apache2/openssl/dist/providers/implementations/storemgmt/
file_store.c 78 OSSL_DECODER_CTX *decoderctx; member in struct:file_ctx_st::__anon598::__anon599
116 OSSL_DECODER_CTX_free(ctx->_.file.decoderctx);
422 if (ctx->_.file.decoderctx == NULL) {
423 if ((ctx->_.file.decoderctx = OSSL_DECODER_CTX_new()) == NULL) {
429 if (!OSSL_DECODER_CTX_set_input_type(ctx->_.file.decoderctx,
444 if (!OSSL_DECODER_CTX_set_input_structure(ctx->_.file.decoderctx,
461 if (!OSSL_DECODER_CTX_set_input_structure(ctx->_.file.decoderctx,
469 if (!OSSL_DECODER_CTX_set_input_structure(ctx->_.file.decoderctx,
477 if (!OSSL_DECODER_CTX_set_input_structure(ctx->_.file.decoderctx,
521 if (!ossl_decoder_ctx_add_decoder_inst(ctx->_.file.decoderctx,
    [all...]
  /src/crypto/external/bsd/openssl/dist/providers/implementations/storemgmt/
file_store.c 79 OSSL_DECODER_CTX *decoderctx; member in struct:file_ctx_st::__anon1637::__anon1638
117 OSSL_DECODER_CTX_free(ctx->_.file.decoderctx);
425 if (ctx->_.file.decoderctx == NULL) {
426 if ((ctx->_.file.decoderctx = OSSL_DECODER_CTX_new()) == NULL) {
432 if (!OSSL_DECODER_CTX_set_input_type(ctx->_.file.decoderctx,
446 if (!OSSL_DECODER_CTX_set_input_structure(ctx->_.file.decoderctx,
453 if (!OSSL_DECODER_CTX_set_input_structure(ctx->_.file.decoderctx,
482 if (!ossl_decoder_ctx_add_decoder_inst(ctx->_.file.decoderctx,
490 if (!OSSL_DECODER_CTX_add_extra(ctx->_.file.decoderctx,
500 if (!OSSL_DECODER_CTX_set_construct(ctx->_.file.decoderctx,
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/encode_decode/
decoder_lib.c 213 void *decoderctx)
265 decoder_inst->decoderctx = decoderctx;
276 decoder_inst->decoder->freectx(decoder_inst->decoderctx);
277 decoder_inst->decoderctx = NULL;
314 void *decoderctx = NULL; local
325 if ((decoderctx = decoder->newctx(provctx)) == NULL
327 ossl_decoder_instance_new(decoder, decoderctx)) == NULL)
329 /* Avoid double free of decoderctx on further errors */
330 decoderctx = NULL
374 void *decoderctx = NULL; local
625 void *decoderctx = NULL; local
    [all...]
encoder_local.h 108 void *decoderctx; /* Never NULL */ member in struct:ossl_decoder_instance_st
decoder_pkey.c 72 void *decoderctx = OSSL_DECODER_INSTANCE_get_decoder_ctx(decoder_inst); local
163 (void)decoder->export_object(decoderctx,
268 void *decoderctx = NULL; local
271 if ((decoderctx = decoder->newctx(provctx)) == NULL) {
275 if ((di = ossl_decoder_instance_new(decoder, decoderctx)) == NULL) {
276 decoder->freectx(decoderctx);
decoder_meth.c 680 OSSL_DECODER *decoderctx = local
683 if (decoderctx == NULL || decoder->set_ctx_params == NULL)
685 if (!decoder->set_ctx_params(decoderctx, params))
  /src/crypto/external/apache2/openssl/dist/apps/
dhparam.c 258 OSSL_DECODER_CTX *decoderctx = NULL; local
277 decoderctx
289 if (decoderctx != NULL
290 && !OSSL_DECODER_from_bio(decoderctx, in)
309 OSSL_DECODER_CTX_free(decoderctx);
  /src/crypto/external/bsd/openssl/dist/apps/
dhparam.c 239 OSSL_DECODER_CTX *decoderctx = NULL; local
258 decoderctx
268 if (decoderctx != NULL
269 && !OSSL_DECODER_from_bio(decoderctx, in)
288 OSSL_DECODER_CTX_free(decoderctx);
  /src/crypto/external/apache2/openssl/dist/crypto/store/
store_result.c 280 OSSL_DECODER_CTX *decoderctx = NULL; local
302 decoderctx = OSSL_DECODER_CTX_new_for_pkey(&pk, data->input_type, data->data_structure,
305 (void)OSSL_DECODER_CTX_set_passphrase_cb(decoderctx, cb, cbarg);
308 (void)OSSL_DECODER_from_data(decoderctx, &pdata, &pdatalen);
311 *harderr = ossl_decoder_ctx_get_harderr(decoderctx);
312 OSSL_DECODER_CTX_free(decoderctx);
  /src/crypto/external/bsd/openssl/dist/crypto/store/
store_result.c 265 OSSL_DECODER_CTX *decoderctx = NULL; local
288 decoderctx =
292 (void)OSSL_DECODER_CTX_set_passphrase_cb(decoderctx, cb, cbarg);
295 (void)OSSL_DECODER_from_data(decoderctx, &pdata, &pdatalen);
297 OSSL_DECODER_CTX_free(decoderctx);
  /src/crypto/external/apache2/openssl/dist/ssl/
ssl_conf.c 615 OSSL_DECODER_CTX *decoderctx = NULL; local
624 decoderctx
628 if (decoderctx == NULL)
631 while (!OSSL_DECODER_from_bio(decoderctx, in)
635 OSSL_DECODER_CTX_free(decoderctx);
  /src/crypto/external/bsd/openssl/dist/ssl/
ssl_conf.c 590 OSSL_DECODER_CTX *decoderctx = NULL; local
599 decoderctx
603 if (decoderctx == NULL)
606 while (!OSSL_DECODER_from_bio(decoderctx, in)
609 OSSL_DECODER_CTX_free(decoderctx);

Completed in 47 milliseconds