Symbol: asn1_cb
crypto/openssl/crypto/asn1/a_dup.c
52
ASN1_aux_cb *asn1_cb = NULL;
crypto/openssl/crypto/asn1/a_dup.c
67
asn1_cb = aux != NULL ? aux->asn1_cb : NULL;
crypto/openssl/crypto/asn1/a_dup.c
70
if (asn1_cb != NULL) {
crypto/openssl/crypto/asn1/a_dup.c
71
if (!asn1_cb(ASN1_OP_DUP_PRE, (ASN1_VALUE **)&x, it, NULL)
crypto/openssl/crypto/asn1/a_dup.c
72
|| !asn1_cb(ASN1_OP_GET0_LIBCTX, (ASN1_VALUE **)&x, it, &libctx)
crypto/openssl/crypto/asn1/a_dup.c
73
|| !asn1_cb(ASN1_OP_GET0_PROPQ, (ASN1_VALUE **)&x, it, &propq))
crypto/openssl/crypto/asn1/a_dup.c
86
if (asn1_cb != NULL
crypto/openssl/crypto/asn1/a_dup.c
87
&& !asn1_cb(ASN1_OP_DUP_POST, &ret, it, (void *)x))
crypto/openssl/crypto/asn1/asn1_gen.c
121
if (CONF_parse_list(str, ',', 1, asn1_cb, &asn1_tags) != 0) {
crypto/openssl/crypto/asn1/asn1_gen.c
69
static int asn1_cb(const char *elem, int len, void *bitstr);
crypto/openssl/crypto/asn1/asn_mime.c
371
if (!aux || !aux->asn1_cb) {
crypto/openssl/crypto/asn1/asn_mime.c
382
if (aux->asn1_cb(ASN1_OP_DETACHED_PRE, &val, it, &sarg) <= 0)
crypto/openssl/crypto/asn1/asn_mime.c
390
if (aux->asn1_cb(ASN1_OP_DETACHED_POST, &val, it, &sarg) <= 0)
crypto/openssl/crypto/asn1/bio_ndef.c
209
if (aux->asn1_cb(ASN1_OP_STREAM_POST,
crypto/openssl/crypto/asn1/bio_ndef.c
66
if (!aux || !aux->asn1_cb) {
crypto/openssl/crypto/asn1/bio_ndef.c
99
if (aux->asn1_cb(ASN1_OP_STREAM_PRE, &val, it, &sarg) <= 0) {
crypto/openssl/crypto/asn1/tasn_dec.c
197
ASN1_aux_cb *asn1_cb;
crypto/openssl/crypto/asn1/tasn_dec.c
216
if (aux && aux->asn1_cb)
crypto/openssl/crypto/asn1/tasn_dec.c
217
asn1_cb = aux->asn1_cb;
crypto/openssl/crypto/asn1/tasn_dec.c
219
asn1_cb = 0;
crypto/openssl/crypto/asn1/tasn_dec.c
302
if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it, NULL))
crypto/openssl/crypto/asn1/tasn_dec.c
356
if (asn1_cb && !asn1_cb(ASN1_OP_D2I_POST, pval, it, NULL))
crypto/openssl/crypto/asn1/tasn_dec.c
397
if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it, NULL))
crypto/openssl/crypto/asn1/tasn_dec.c
498
if (asn1_cb && !asn1_cb(ASN1_OP_D2I_POST, pval, it, NULL))
crypto/openssl/crypto/asn1/tasn_enc.c
126
if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL))
crypto/openssl/crypto/asn1/tasn_enc.c
137
if (asn1_cb && !asn1_cb(ASN1_OP_I2D_POST, pval, it, NULL))
crypto/openssl/crypto/asn1/tasn_enc.c
169
if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL))
crypto/openssl/crypto/asn1/tasn_enc.c
203
if (asn1_cb && !asn1_cb(ASN1_OP_I2D_POST, pval, it, NULL))
crypto/openssl/crypto/asn1/tasn_enc.c
88
ASN1_aux_const_cb *asn1_cb = NULL;
crypto/openssl/crypto/asn1/tasn_enc.c
94
asn1_cb = ((aux->flags & ASN1_AFLG_CONST_CB) != 0) ? aux->asn1_const_cb
crypto/openssl/crypto/asn1/tasn_enc.c
95
: (ASN1_aux_const_cb *)aux->asn1_cb; /* backward compatibility */
crypto/openssl/crypto/asn1/tasn_fre.c
116
if (asn1_cb)
crypto/openssl/crypto/asn1/tasn_fre.c
117
asn1_cb(ASN1_OP_FREE_POST, pval, it, NULL);
crypto/openssl/crypto/asn1/tasn_fre.c
33
ASN1_aux_cb *asn1_cb;
crypto/openssl/crypto/asn1/tasn_fre.c
40
if (aux && aux->asn1_cb)
crypto/openssl/crypto/asn1/tasn_fre.c
41
asn1_cb = aux->asn1_cb;
crypto/openssl/crypto/asn1/tasn_fre.c
43
asn1_cb = 0;
crypto/openssl/crypto/asn1/tasn_fre.c
59
if (asn1_cb) {
crypto/openssl/crypto/asn1/tasn_fre.c
60
i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL);
crypto/openssl/crypto/asn1/tasn_fre.c
72
if (asn1_cb)
crypto/openssl/crypto/asn1/tasn_fre.c
73
asn1_cb(ASN1_OP_FREE_POST, pval, it, NULL);
crypto/openssl/crypto/asn1/tasn_fre.c
94
if (asn1_cb) {
crypto/openssl/crypto/asn1/tasn_fre.c
95
i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL);
crypto/openssl/crypto/asn1/tasn_new.c
102
if (asn1_cb) {
crypto/openssl/crypto/asn1/tasn_new.c
103
i = asn1_cb(ASN1_OP_NEW_PRE, pval, it, NULL);
crypto/openssl/crypto/asn1/tasn_new.c
118
if (asn1_cb && !asn1_cb(ASN1_OP_NEW_POST, pval, it, NULL))
crypto/openssl/crypto/asn1/tasn_new.c
124
if (asn1_cb) {
crypto/openssl/crypto/asn1/tasn_new.c
125
i = asn1_cb(ASN1_OP_NEW_PRE, pval, it, NULL);
crypto/openssl/crypto/asn1/tasn_new.c
153
if (asn1_cb && !asn1_cb(ASN1_OP_NEW_POST, pval, it, NULL))
crypto/openssl/crypto/asn1/tasn_new.c
65
ASN1_aux_cb *asn1_cb;
crypto/openssl/crypto/asn1/tasn_new.c
68
if (aux && aux->asn1_cb)
crypto/openssl/crypto/asn1/tasn_new.c
69
asn1_cb = aux->asn1_cb;
crypto/openssl/crypto/asn1/tasn_new.c
71
asn1_cb = 0;
crypto/openssl/crypto/asn1/tasn_prn.c
141
ASN1_aux_const_cb *asn1_cb = NULL;
crypto/openssl/crypto/asn1/tasn_prn.c
148
asn1_cb = ((aux->flags & ASN1_AFLG_CONST_CB) != 0) ? aux->asn1_const_cb
crypto/openssl/crypto/asn1/tasn_prn.c
149
: (ASN1_aux_const_cb *)aux->asn1_cb; /* backward compatibility */
crypto/openssl/crypto/asn1/tasn_prn.c
223
if (asn1_cb) {
crypto/openssl/crypto/asn1/tasn_prn.c
224
i = asn1_cb(ASN1_OP_PRINT_PRE, fld, it, &parg);
crypto/openssl/crypto/asn1/tasn_prn.c
247
if (asn1_cb) {
crypto/openssl/crypto/asn1/tasn_prn.c
248
i = asn1_cb(ASN1_OP_PRINT_POST, fld, it, &parg);
crypto/openssl/include/openssl/asn1t.h
696
ASN1_aux_cb *asn1_cb;