Lines Matching full:decoder

153 \&\- Decoder method routines
157 \& #include <openssl/decoder.h>
163 \& int OSSL_DECODER_up_ref(OSSL_DECODER *decoder);
164 \& void OSSL_DECODER_free(OSSL_DECODER *decoder);
165 \& const OSSL_PROVIDER *OSSL_DECODER_get0_provider(const OSSL_DECODER *decoder);
166 \& const char *OSSL_DECODER_get0_properties(const OSSL_DECODER *decoder);
167 \& int OSSL_DECODER_is_a(const OSSL_DECODER *decoder, const char *name);
168 \& const char *OSSL_DECODER_get0_name(const OSSL_DECODER *decoder);
169 \& const char *OSSL_DECODER_get0_description(const OSSL_DECODER *decoder);
171 \& void (*fn)(OSSL_DECODER *decoder, void *arg),
173 \& int OSSL_DECODER_names_do_all(const OSSL_DECODER *decoder,
176 \& const OSSL_PARAM *OSSL_DECODER_gettable_params(OSSL_DECODER *decoder);
188 The \fIname\fR determines what type of object the fetched decoder
204 with the given \fIdecoder\fR.
206 \&\fBOSSL_DECODER_is_a()\fR checks if \fIdecoder\fR is an implementation
209 \&\fBOSSL_DECODER_get0_name()\fR returns the name used to fetch the given \fIdecoder\fR.
211 \&\fBOSSL_DECODER_get0_description()\fR returns a description of the \fIdecoder\fR, meant
213 of the \fIdecoder\fR implementation.
218 \&\fBOSSL_DECODER_do_all_provided()\fR traverses all decoder
244 \&\fBOSSL_DECODER_is_a()\fR returns 1 if \fIdecoder\fR was identifiable,
248 implementation for the given \fIdecoder\fR. Note that the \fIdecoder\fR may have
251 by the \fIdecoder\fR object and should not be freed by the caller.
268 \& static void collect_decoders(OSSL_DECODER *decoder, void *stack)
272 \& sk_OSSL_DECODER_push(decoder_stack, decoder);
273 \& OSSL_DECODER_up_ref(decoder);
294 \& OSSL_DECODER *decoder = sk_OSSL_DECODER_value(decoders, i);
296 \& if (strcmp(OSSL_PROVIDER_get0_name(OSSL_DECODER_get0_provider(decoder)),
300 \& if (OSSL_DECODER_names_do_all(decoder, print_name, bio_out))