Lines Matching refs:encoderctx
184 void *encoderctx) in ossl_encoder_instance_new() argument
236 encoder_inst->encoderctx = encoderctx; in ossl_encoder_instance_new()
247 encoder_inst->encoder->freectx(encoder_inst->encoderctx); in ossl_encoder_instance_free()
248 encoder_inst->encoderctx = NULL; in ossl_encoder_instance_free()
285 void *encoderctx = NULL; in OSSL_ENCODER_CTX_add_encoder() local
296 if ((encoderctx = encoder->newctx(provctx)) == NULL in OSSL_ENCODER_CTX_add_encoder()
298 ossl_encoder_instance_new(encoder, encoderctx)) == NULL) in OSSL_ENCODER_CTX_add_encoder()
301 encoderctx = NULL; in OSSL_ENCODER_CTX_add_encoder()
309 if (encoderctx != NULL) in OSSL_ENCODER_CTX_add_encoder()
310 encoder->freectx(encoderctx); in OSSL_ENCODER_CTX_add_encoder()
373 return encoder_inst->encoderctx; in OSSL_ENCODER_INSTANCE_get_encoder_ctx()