| /src/crypto/external/apache2/openssl/dist/crypto/encode_decode/ |
| decoder_meth.c | 12 #include <openssl/decoder.h> 18 #include "crypto/decoder.h" 23 * Decoder can have multiple names, separated with colons in a name string 40 OSSL_DECODER *decoder = NULL; local 42 if ((decoder = OPENSSL_zalloc(sizeof(*decoder))) == NULL) 44 if (!CRYPTO_NEW_REF(&decoder->base.refcnt, 1)) { 45 OSSL_DECODER_free(decoder); 49 return decoder; 52 int OSSL_DECODER_up_ref(OSSL_DECODER *decoder) 212 OSSL_DECODER *decoder = NULL; local 654 OSSL_DECODER *decoder = OSSL_DECODER_INSTANCE_get_decoder(decoder_inst); local [all...] |
| decoder_lib.c | 22 #include "crypto/decoder.h" 32 /* Index of the current decoder instance to be processed */ 216 ossl_decoder_instance_new_forprov(OSSL_DECODER *decoder, void *provctx, 221 if (!ossl_assert(decoder != NULL)) { 226 decoderctx = decoder->newctx(provctx); 229 if (input_structure != NULL && decoder->set_ctx_params != NULL) { 234 if (!decoder->set_ctx_params(decoderctx, params)) { 235 decoder->freectx(decoderctx); 239 return ossl_decoder_instance_new(decoder, decoderctx); 242 OSSL_DECODER_INSTANCE *ossl_decoder_instance_new(OSSL_DECODER *decoder, 747 OSSL_DECODER *decoder = NULL; local 803 OSSL_DECODER *decoder = NULL; local [all...] |
| encoder_local.h | 14 #include <openssl/decoder.h> 15 #include "crypto/decoder.h" 107 OSSL_DECODER *decoder; /* Never NULL */ member in struct:ossl_decoder_instance_st 131 * decoder implementations in a chain, i.e. those chosen using the 137 * decoder implementations are selected, because there are structures 168 ossl_decoder_parsed_properties(const OSSL_DECODER *decoder); 172 int ossl_decoder_fast_is_a(OSSL_DECODER *decoder,
|
| decoder_pkey.c | 15 #include <openssl/decoder.h> 19 #include "crypto/decoder.h" 68 OSSL_DECODER_CTX *ctx; /* The parent decoder context */ 76 OSSL_DECODER *decoder = OSSL_DECODER_INSTANCE_get_decoder(decoder_inst); local 78 const OSSL_PROVIDER *decoder_prov = OSSL_DECODER_get0_provider(decoder); 117 * the decoder that passed the params. 149 * Otherwise, we export from the decoder and import the 169 (void)decoder->export_object(decoderctx, 232 * Add decoder instance to the decoder context if it is compatible. Returns [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/encode_decode/ |
| decoder_meth.c | 12 #include <openssl/decoder.h> 18 #include "crypto/decoder.h" 22 * Decoder can have multiple names, separated with colons in a name string 29 OSSL_DECODER *decoder = NULL; local 31 if ((decoder = OPENSSL_zalloc(sizeof(*decoder))) == NULL 32 || (decoder->base.lock = CRYPTO_THREAD_lock_new()) == NULL) { 33 OSSL_DECODER_free(decoder); 38 decoder->base.refcnt = 1; 40 return decoder; 223 OSSL_DECODER *decoder = NULL; local 678 OSSL_DECODER *decoder = local [all...] |
| decoder_lib.c | 21 #include "crypto/decoder.h" 31 /* Index of the current decoder instance to be processed */ 212 OSSL_DECODER_INSTANCE *ossl_decoder_instance_new(OSSL_DECODER *decoder, 221 if (!ossl_assert(decoder != NULL)) { 231 prov = OSSL_DECODER_get0_provider(decoder); 233 props = ossl_decoder_parsed_properties(decoder); 236 "there are no property definitions with decoder %s", 237 OSSL_DECODER_get0_name(decoder)); 247 "for decoder %s (properties: %s)", 248 OSSL_DECODER_get0_name(decoder), 624 OSSL_DECODER *decoder = NULL; local 680 OSSL_DECODER *decoder = NULL; local [all...] |
| encoder_local.h | 14 #include <openssl/decoder.h> 107 OSSL_DECODER *decoder; /* Never NULL */ member in struct:ossl_decoder_instance_st 128 * decoder implementations in a chain, i.e. those chosen using the 134 * decoder implementations are selected, because there are structures 162 ossl_decoder_parsed_properties(const OSSL_DECODER *decoder);
|
| decoder_pkey.c | 15 #include <openssl/decoder.h> 19 #include "crypto/decoder.h" 71 OSSL_DECODER *decoder = OSSL_DECODER_INSTANCE_get_decoder(decoder_inst); local 73 const OSSL_PROVIDER *decoder_prov = OSSL_DECODER_get0_provider(decoder); 112 * the decoder that passed the params. 143 * Otherwise, we export from the decoder and import the 163 (void)decoder->export_object(decoderctx, 229 static void collect_decoder(OSSL_DECODER *decoder, void *arg) 233 const OSSL_PROVIDER *prov = OSSL_DECODER_get0_provider(decoder); 246 * the decoder must tell us if it supports that selection t [all...] |
| /src/crypto/external/apache2/openssl/dist/include/crypto/ |
| decoder.h | 14 #include <openssl/decoder.h> 18 * uses this to install a DER to anything decoder, which doesn't do much 26 ossl_decoder_instance_new_forprov(OSSL_DECODER *decoder, void *provctx, 29 ossl_decoder_instance_new(OSSL_DECODER *decoder, void *decoderctx);
|
| /src/external/gpl3/gdb/dist/sim/ppc/ |
| hw_ide.c | 532 address_decoder *decoder, 541 if (space == decoder->block[i].space 542 && address >= decoder->block[i].base_addr 543 && address <= decoder->block[i].bound_addr) { 544 *controller = decoder->block[i].controller; 546 - decoder->block[i].base_addr 547 + decoder->block[i].base_reg); 566 address_decoder *decoder) 580 /* insert it into the address decoder */ 587 decoder->block[reg-1].space = space 650 address_decoder decoder; member in struct:_hw_ide_device [all...] |
| /src/external/gpl3/gdb.old/dist/sim/ppc/ |
| hw_ide.c | 532 address_decoder *decoder, 541 if (space == decoder->block[i].space 542 && address >= decoder->block[i].base_addr 543 && address <= decoder->block[i].bound_addr) { 544 *controller = decoder->block[i].controller; 546 - decoder->block[i].base_addr 547 + decoder->block[i].base_reg); 566 address_decoder *decoder) 580 /* insert it into the address decoder */ 587 decoder->block[reg-1].space = space 650 address_decoder decoder; member in struct:_hw_ide_device [all...] |
| /src/crypto/external/bsd/openssl/dist/include/crypto/ |
| decoder.h | 14 # include <openssl/decoder.h> 22 * uses this to install a DER to anything decoder, which doesn't do much 30 ossl_decoder_instance_new(OSSL_DECODER *decoder, void *decoderctx);
|
| /src/external/mpl/bind/dist/lib/isc/ |
| picohttpparser.c | 605 phr_decode_chunked(struct phr_chunked_decoder *decoder, char *buf, 610 decoder->_total_read += bufsz; 613 switch (decoder->_state) { 621 if (decoder->_hex_count == 0) { 641 if (decoder->_hex_count == sizeof(size_t) * 2) { 645 decoder->bytes_left_in_chunk = 646 decoder->bytes_left_in_chunk * 16 + v; 647 ++decoder->_hex_count; 649 decoder->_hex_count = 0; 650 decoder->_state = CHUNKED_IN_CHUNK_EXT [all...] |
| picohttpparser.h | 94 phr_decode_chunked(struct phr_chunked_decoder *decoder, char *buf, 97 /* returns if the chunked decoder is in middle of chunked data */ 99 phr_decode_chunked_is_in_data(struct phr_chunked_decoder *decoder);
|
| /src/crypto/external/bsd/openssl/dist/providers/ |
| decoders.inc | 28 #define DECODER(_name, _input, _output, _fips) \ 53 DECODER("DSA", msblob, dsa, yes), 54 DECODER("DSA", pvk, dsa, yes), 80 DECODER("RSA", msblob, rsa, yes), 81 DECODER("RSA", pvk, rsa, yes), 84 * A decoder that takes a SubjectPublicKeyInfo and figures out the types of key 88 DECODER("DER", pem, der, yes), 90 * A decoder that recognises PKCS#8 EncryptedPrivateKeyInfo structure 92 * form to the next decoder.
|
| /src/crypto/external/apache2/openssl/dist/include/openssl/ |
| decoder.h | 36 const char *OSSL_DECODER_get0_name(const OSSL_DECODER *decoder); 37 const char *OSSL_DECODER_get0_description(const OSSL_DECODER *decoder); 46 const OSSL_PARAM *OSSL_DECODER_gettable_params(OSSL_DECODER *decoder); 47 int OSSL_DECODER_get_params(OSSL_DECODER *decoder, OSSL_PARAM params[]); 77 int OSSL_DECODER_CTX_add_decoder(OSSL_DECODER_CTX *ctx, OSSL_DECODER *decoder);
|
| /src/crypto/external/bsd/openssl/dist/include/openssl/ |
| decoder.h | 36 const char *OSSL_DECODER_get0_name(const OSSL_DECODER *decoder); 37 const char *OSSL_DECODER_get0_description(const OSSL_DECODER *decoder); 46 const OSSL_PARAM *OSSL_DECODER_gettable_params(OSSL_DECODER *decoder); 47 int OSSL_DECODER_get_params(OSSL_DECODER *decoder, OSSL_PARAM params[]); 77 int OSSL_DECODER_CTX_add_decoder(OSSL_DECODER_CTX *ctx, OSSL_DECODER *decoder);
|
| /src/crypto/external/apache2/openssl/dist/providers/ |
| decoders.inc | 28 #define DECODER(_name, _input, _output, _fips) \ 53 DECODER("DSA", msblob, dsa, yes), 54 DECODER("DSA", pvk, dsa, yes), 117 DECODER("RSA", msblob, rsa, yes), 118 DECODER("RSA", pvk, rsa, yes), 129 * A decoder that takes a SubjectPublicKeyInfo and figures out the types of key 134 * General-purpose PEM to DER decoder. When the user-specified data structure 141 DECODER("DER", pem, der, yes), 143 * A decoder that recognises PKCS#8 EncryptedPrivateKeyInfo structure and
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| provfetchtest.c | 12 #include <openssl/decoder.h> 224 * Test 0: Decoder 235 OSSL_DECODER *decoder = NULL; local 253 decoder = OSSL_DECODER_fetch(libctx, "DUMMY", 255 if (!TEST_ptr(decoder)) 283 OSSL_DECODER_free(decoder);
|
| /src/crypto/external/bsd/openssl/dist/test/ |
| provfetchtest.c | 12 #include <openssl/decoder.h> 224 * Test 0: Decoder 235 OSSL_DECODER *decoder = NULL; local 253 decoder = OSSL_DECODER_fetch(libctx, "DUMMY", 255 if (!TEST_ptr(decoder)) 283 OSSL_DECODER_free(decoder);
|
| /src/external/bsd/tcpdump/dist/ |
| print-openflow.c | 132 if (!ndo->ndo_vflag || !mti->decoder) 135 mti->decoder(ndo, cp, len);
|
| openflow.h | 80 void (*decoder)(netdissect_options *ndo, const u_char *, const u_int); member in struct:of_msgtypeinfo
|
| /src/external/gpl3/gdb/dist/libsframe/testsuite/ |
| local.mk | 22 # libsframe encoder/decoder/find testsuite
|
| /src/external/gpl3/gdb.old/dist/libsframe/testsuite/ |
| local.mk | 22 # libsframe encoder/decoder/find testsuite
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| base64.d | 53 * Authors: Masahiro Nakagawa, Daniel Murphy (Single value Encoder and Decoder) 1368 * use the $(LREF decoder) function instead. 1370 struct Decoder(Range) if (isInputRange!Range && (is(ElementType!Range : const(char)[]) || 1412 * `Base64Exception` if invoked when $(LREF2 .Base64Impl.Decoder.empty, 1417 enforce(!empty, new Base64Exception("Cannot call popFront on Decoder with no data remaining.")); 1442 typeof(return) decoder; 1444 decoder.range_ = range_.save; 1445 decoder.buffer_ = buffer_.dup; 1446 decoder.decoded_ = decoder.buffer_[0 .. decoded_.length] [all...] |