Lines Matching refs:encoderctx
211 void *encoderctx) in ossl_encoder_instance_new() argument
261 encoder_inst->encoderctx = encoderctx; in ossl_encoder_instance_new()
272 encoder_inst->encoder->freectx(encoder_inst->encoderctx); in ossl_encoder_instance_free()
273 encoder_inst->encoderctx = NULL; in ossl_encoder_instance_free()
310 void *encoderctx = NULL; in OSSL_ENCODER_CTX_add_encoder() local
321 if ((encoderctx = encoder->newctx(provctx)) == NULL in OSSL_ENCODER_CTX_add_encoder()
323 ossl_encoder_instance_new(encoder, encoderctx)) == NULL) in OSSL_ENCODER_CTX_add_encoder()
326 encoderctx = NULL; in OSSL_ENCODER_CTX_add_encoder()
334 if (encoderctx != NULL) in OSSL_ENCODER_CTX_add_encoder()
335 encoder->freectx(encoderctx); in OSSL_ENCODER_CTX_add_encoder()
398 return encoder_inst->encoderctx; in OSSL_ENCODER_INSTANCE_get_encoder_ctx()