HomeSort by: relevance | last modified time | path
    Searched refs:asn1_cb (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/crypto/external/apache2/openssl/dist/crypto/asn1/
a_dup.c 52 ASN1_aux_cb *asn1_cb = NULL; local
67 asn1_cb = aux != NULL ? aux->asn1_cb : NULL;
70 if (asn1_cb != NULL) {
71 if (!asn1_cb(ASN1_OP_DUP_PRE, (ASN1_VALUE **)&x, it, NULL)
72 || !asn1_cb(ASN1_OP_GET0_LIBCTX, (ASN1_VALUE **)&x, it, &libctx)
73 || !asn1_cb(ASN1_OP_GET0_PROPQ, (ASN1_VALUE **)&x, it, &propq))
86 if (asn1_cb != NULL
87 && !asn1_cb(ASN1_OP_DUP_POST, &ret, it, (void *)x))
tasn_fre.c 33 ASN1_aux_cb *asn1_cb; local
40 if (aux && aux->asn1_cb)
41 asn1_cb = aux->asn1_cb;
43 asn1_cb = 0;
59 if (asn1_cb) {
60 i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL);
72 if (asn1_cb)
73 asn1_cb(ASN1_OP_FREE_POST, pval, it, NULL);
94 if (asn1_cb) {
    [all...]
tasn_new.c 65 ASN1_aux_cb *asn1_cb; local
68 if (aux && aux->asn1_cb)
69 asn1_cb = aux->asn1_cb;
71 asn1_cb = 0;
102 if (asn1_cb) {
103 i = asn1_cb(ASN1_OP_NEW_PRE, pval, it, NULL);
118 if (asn1_cb && !asn1_cb(ASN1_OP_NEW_POST, pval, it, NULL))
124 if (asn1_cb) {
    [all...]
bio_ndef.c 66 if (!aux || !aux->asn1_cb) {
96 * The asn1_cb(), must not have mutated asn_bio on error, leaving it in the
99 if (aux->asn1_cb(ASN1_OP_STREAM_PRE, &val, it, &sarg) <= 0) {
209 if (aux->asn1_cb(ASN1_OP_STREAM_POST,
tasn_enc.c 88 ASN1_aux_const_cb *asn1_cb = NULL; local
94 asn1_cb = ((aux->flags & ASN1_AFLG_CONST_CB) != 0) ? aux->asn1_const_cb
95 : (ASN1_aux_const_cb *)aux->asn1_cb; /* backward compatibility */
126 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL))
137 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_POST, pval, it, NULL))
169 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL))
203 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_POST, pval, it, NULL)
    [all...]
tasn_prn.c 141 ASN1_aux_const_cb *asn1_cb = NULL; local
148 asn1_cb = ((aux->flags & ASN1_AFLG_CONST_CB) != 0) ? aux->asn1_const_cb
149 : (ASN1_aux_const_cb *)aux->asn1_cb; /* backward compatibility */
223 if (asn1_cb) {
224 i = asn1_cb(ASN1_OP_PRINT_PRE, fld, it, &parg);
247 if (asn1_cb) {
248 i = asn1_cb(ASN1_OP_PRINT_POST, fld, it, &parg);
tasn_dec.c 197 ASN1_aux_cb *asn1_cb; local
216 if (aux && aux->asn1_cb)
217 asn1_cb = aux->asn1_cb;
219 asn1_cb = 0;
302 if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it, NULL))
356 if (asn1_cb && !asn1_cb(ASN1_OP_D2I_POST, pval, it, NULL))
397 if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it, NULL)
    [all...]
asn1_gen.c 69 static int asn1_cb(const char *elem, int len, void *bitstr);
121 if (CONF_parse_list(str, ',', 1, asn1_cb, &asn1_tags) != 0) {
249 static int asn1_cb(const char *elem, int len, void *bitstr) function
asn_mime.c 371 if (!aux || !aux->asn1_cb) {
382 if (aux->asn1_cb(ASN1_OP_DETACHED_PRE, &val, it, &sarg) <= 0)
390 if (aux->asn1_cb(ASN1_OP_DETACHED_POST, &val, it, &sarg) <= 0)
  /src/crypto/external/bsd/openssl/dist/crypto/asn1/
a_dup.c 54 ASN1_aux_cb *asn1_cb = NULL; local
69 asn1_cb = aux != NULL ? aux->asn1_cb : NULL;
72 if (asn1_cb != NULL) {
73 if (!asn1_cb(ASN1_OP_DUP_PRE, (ASN1_VALUE **)&x, it, NULL)
74 || !asn1_cb(ASN1_OP_GET0_LIBCTX, (ASN1_VALUE **)&x, it, &libctx)
75 || !asn1_cb(ASN1_OP_GET0_PROPQ, (ASN1_VALUE **)&x, it, &propq))
88 if (asn1_cb != NULL
89 && !asn1_cb(ASN1_OP_DUP_POST, &ret, it, (void *)x))
tasn_fre.c 33 ASN1_aux_cb *asn1_cb; local
40 if (aux && aux->asn1_cb)
41 asn1_cb = aux->asn1_cb;
43 asn1_cb = 0;
59 if (asn1_cb) {
60 i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL);
72 if (asn1_cb)
73 asn1_cb(ASN1_OP_FREE_POST, pval, it, NULL);
94 if (asn1_cb) {
    [all...]
tasn_new.c 66 ASN1_aux_cb *asn1_cb; local
69 if (aux && aux->asn1_cb)
70 asn1_cb = aux->asn1_cb;
72 asn1_cb = 0;
103 if (asn1_cb) {
104 i = asn1_cb(ASN1_OP_NEW_PRE, pval, it, NULL);
119 if (asn1_cb && !asn1_cb(ASN1_OP_NEW_POST, pval, it, NULL))
125 if (asn1_cb) {
    [all...]
tasn_enc.c 90 ASN1_aux_const_cb *asn1_cb = NULL; local
96 asn1_cb = ((aux->flags & ASN1_AFLG_CONST_CB) != 0) ? aux->asn1_const_cb
97 : (ASN1_aux_const_cb *)aux->asn1_cb; /* backward compatibility */
128 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL))
139 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_POST, pval, it, NULL))
171 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL))
205 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_POST, pval, it, NULL)
    [all...]
tasn_prn.c 143 ASN1_aux_const_cb *asn1_cb = NULL; local
150 asn1_cb = ((aux->flags & ASN1_AFLG_CONST_CB) != 0) ? aux->asn1_const_cb
151 : (ASN1_aux_const_cb *)aux->asn1_cb; /* backward compatibility */
225 if (asn1_cb) {
226 i = asn1_cb(ASN1_OP_PRINT_PRE, fld, it, &parg);
249 if (asn1_cb) {
250 i = asn1_cb(ASN1_OP_PRINT_POST, fld, it, &parg);
tasn_dec.c 171 ASN1_aux_cb *asn1_cb; local
190 if (aux && aux->asn1_cb)
191 asn1_cb = aux->asn1_cb;
193 asn1_cb = 0;
276 if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it, NULL))
330 if (asn1_cb && !asn1_cb(ASN1_OP_D2I_POST, pval, it, NULL))
371 if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it, NULL)
    [all...]
bio_ndef.c 66 if (!aux || !aux->asn1_cb) {
96 * The asn1_cb(), must not have mutated asn_bio on error, leaving it in the
99 if (aux->asn1_cb(ASN1_OP_STREAM_PRE, &val, it, &sarg) <= 0) {
211 if (aux->asn1_cb(ASN1_OP_STREAM_POST,
asn1_gen.c 68 static int asn1_cb(const char *elem, int len, void *bitstr);
120 if (CONF_parse_list(str, ',', 1, asn1_cb, &asn1_tags) != 0) {
240 static int asn1_cb(const char *elem, int len, void *bitstr) function
asn_mime.c 359 if (!aux || !aux->asn1_cb) {
370 if (aux->asn1_cb(ASN1_OP_DETACHED_PRE, &val, it, &sarg) <= 0)
378 if (aux->asn1_cb(ASN1_OP_DETACHED_POST, &val, it, &sarg) <= 0)
  /src/crypto/external/bsd/openssl.old/dist/crypto/asn1/
tasn_fre.c 33 ASN1_aux_cb *asn1_cb; local
40 if (aux && aux->asn1_cb)
41 asn1_cb = aux->asn1_cb;
43 asn1_cb = 0;
59 if (asn1_cb) {
60 i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL);
72 if (asn1_cb)
73 asn1_cb(ASN1_OP_FREE_POST, pval, it, NULL);
90 if (asn1_cb) {
    [all...]
tasn_new.c 47 ASN1_aux_cb *asn1_cb; local
50 if (aux && aux->asn1_cb)
51 asn1_cb = aux->asn1_cb;
53 asn1_cb = 0;
83 if (asn1_cb) {
84 i = asn1_cb(ASN1_OP_NEW_PRE, pval, it, NULL);
102 if (asn1_cb && !asn1_cb(ASN1_OP_NEW_POST, pval, it, NULL))
108 if (asn1_cb) {
    [all...]
tasn_prn.c 143 ASN1_aux_cb *asn1_cb; local
146 if (aux && aux->asn1_cb) {
150 asn1_cb = aux->asn1_cb;
152 asn1_cb = 0;
225 if (asn1_cb) {
226 i = asn1_cb(ASN1_OP_PRINT_PRE, fld, it, &parg);
249 if (asn1_cb) {
250 i = asn1_cb(ASN1_OP_PRINT_POST, fld, it, &parg);
bio_ndef.c 66 if (!aux || !aux->asn1_cb) {
96 * The asn1_cb(), must not have mutated asn_bio on error, leaving it in the
99 if (aux->asn1_cb(ASN1_OP_STREAM_PRE, &val, it, &sarg) <= 0) {
211 if (aux->asn1_cb(ASN1_OP_STREAM_POST,
tasn_enc.c 89 ASN1_aux_cb *asn1_cb = 0; local
94 if (aux && aux->asn1_cb)
95 asn1_cb = aux->asn1_cb;
125 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL))
136 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_POST, pval, it, NULL))
168 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL)
    [all...]
tasn_dec.c 143 ASN1_aux_cb *asn1_cb; local
154 if (aux && aux->asn1_cb)
155 asn1_cb = aux->asn1_cb;
157 asn1_cb = 0;
237 if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it, NULL))
290 if (asn1_cb && !asn1_cb(ASN1_OP_D2I_POST, pval, it, NULL))
330 if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it, NULL)
    [all...]
asn1_gen.c 68 static int asn1_cb(const char *elem, int len, void *bitstr);
120 if (CONF_parse_list(str, ',', 1, asn1_cb, &asn1_tags) != 0) {
240 static int asn1_cb(const char *elem, int len, void *bitstr) function

Completed in 40 milliseconds

1 2