Lines Matching refs:encoderctx
188 void *encoderctx) in ossl_encoder_instance_new() argument
238 encoder_inst->encoderctx = encoderctx; in ossl_encoder_instance_new()
249 encoder_inst->encoder->freectx(encoder_inst->encoderctx); in ossl_encoder_instance_free()
250 encoder_inst->encoderctx = NULL; in ossl_encoder_instance_free()
287 void *encoderctx = NULL; in OSSL_ENCODER_CTX_add_encoder() local
298 if ((encoderctx = encoder->newctx(provctx)) == NULL in OSSL_ENCODER_CTX_add_encoder()
300 ossl_encoder_instance_new(encoder, encoderctx)) == NULL) in OSSL_ENCODER_CTX_add_encoder()
303 encoderctx = NULL; in OSSL_ENCODER_CTX_add_encoder()
311 if (encoderctx != NULL) in OSSL_ENCODER_CTX_add_encoder()
312 encoder->freectx(encoderctx); in OSSL_ENCODER_CTX_add_encoder()
375 return encoder_inst->encoderctx; in OSSL_ENCODER_INSTANCE_get_encoder_ctx()