HomeSort by relevance Sort by last modified time
    Searched defs:asn1_cb (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/boringssl/src/crypto/asn1/
tasn_fre.c 83 ASN1_aux_cb *asn1_cb; local
89 if (aux && aux->asn1_cb)
90 asn1_cb = aux->asn1_cb;
92 asn1_cb = 0;
109 if (asn1_cb)
111 i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL);
123 if (asn1_cb)
124 asn1_cb(ASN1_OP_FREE_POST, pval, it, NULL);
148 if (asn1_cb)
    [all...]
tasn_new.c 93 ASN1_aux_cb *asn1_cb; local
96 if (aux && aux->asn1_cb)
97 asn1_cb = aux->asn1_cb;
99 asn1_cb = 0;
145 if (asn1_cb)
147 i = asn1_cb(ASN1_OP_NEW_PRE, pval, it, NULL);
167 if (asn1_cb && !asn1_cb(ASN1_OP_NEW_POST, pval, it, NULL))
173 if (asn1_cb)
    [all...]
tasn_enc.c 135 ASN1_aux_cb *asn1_cb = 0; local
140 if (aux && aux->asn1_cb)
141 asn1_cb = aux->asn1_cb;
157 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL))
170 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_POST, pval, it, NULL))
215 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL)
    [all...]
tasn_prn.c 199 ASN1_aux_cb *asn1_cb; local
202 if (aux && aux->asn1_cb)
207 asn1_cb = aux->asn1_cb;
209 else asn1_cb = 0;
298 if (asn1_cb)
300 i = asn1_cb(ASN1_OP_PRINT_PRE, fld, it, &parg);
323 if (asn1_cb)
325 i = asn1_cb(ASN1_OP_PRINT_POST, fld, it, &parg);
tasn_dec.c 159 ASN1_aux_cb *asn1_cb; local
171 if (aux && aux->asn1_cb)
172 asn1_cb = aux->asn1_cb;
173 else asn1_cb = 0;
302 if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it, NULL))
348 if (asn1_cb && !asn1_cb(ASN1_OP_D2I_POST, pval, it, NULL))
392 if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it, NULL)
    [all...]
  /external/openssl/crypto/asn1/
tasn_fre.c 85 ASN1_aux_cb *asn1_cb; local
91 if (aux && aux->asn1_cb)
92 asn1_cb = aux->asn1_cb;
94 asn1_cb = 0;
111 if (asn1_cb)
113 i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL);
125 if (asn1_cb)
126 asn1_cb(ASN1_OP_FREE_POST, pval, it, NULL);
150 if (asn1_cb)
    [all...]
tasn_new.c 95 ASN1_aux_cb *asn1_cb; local
98 if (aux && aux->asn1_cb)
99 asn1_cb = aux->asn1_cb;
101 asn1_cb = 0;
147 if (asn1_cb)
149 i = asn1_cb(ASN1_OP_NEW_PRE, pval, it, NULL);
169 if (asn1_cb && !asn1_cb(ASN1_OP_NEW_POST, pval, it, NULL))
175 if (asn1_cb)
    [all...]
tasn_enc.c 139 ASN1_aux_cb *asn1_cb = 0; local
144 if (aux && aux->asn1_cb)
145 asn1_cb = aux->asn1_cb;
161 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL))
174 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_POST, pval, it, NULL))
219 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL)
    [all...]
tasn_prn.c 199 ASN1_aux_cb *asn1_cb; local
202 if (aux && aux->asn1_cb)
207 asn1_cb = aux->asn1_cb;
209 else asn1_cb = 0;
298 if (asn1_cb)
300 i = asn1_cb(ASN1_OP_PRINT_PRE, fld, it, &parg);
323 if (asn1_cb)
325 i = asn1_cb(ASN1_OP_PRINT_POST, fld, it, &parg);
asn1_gen.c 117 static int asn1_cb(const char *elem, int len, void *bitstr);
156 if (CONF_parse_list(str, ',', 1, asn1_cb, &asn1_tags) != 0)
277 static int asn1_cb(const char *elem, int len, void *bitstr) function
tasn_dec.c 162 ASN1_aux_cb *asn1_cb; local
174 if (aux && aux->asn1_cb)
175 asn1_cb = aux->asn1_cb;
176 else asn1_cb = 0;
311 if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it, NULL))
360 if (asn1_cb && !asn1_cb(ASN1_OP_D2I_POST, pval, it, NULL))
407 if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it, NULL)
    [all...]
asn1t.h 727 ASN1_aux_cb *asn1_cb; member in struct:ASN1_AUX_st
757 /* operation values for asn1_cb */
  /external/chromium_org/third_party/boringssl/src/crypto/x509/
asn1_gen.c 120 static int asn1_cb(const char *elem, int len, void *bitstr);
159 if (CONF_parse_list(str, ',', 1, asn1_cb, &asn1_tags) != 0)
280 static int asn1_cb(const char *elem, int len, void *bitstr) function
306 OPENSSL_PUT_ERROR(X509, asn1_cb, ASN1_R_UNKNOWN_TAG);
319 OPENSSL_PUT_ERROR(X509, asn1_cb, ASN1_R_MISSING_VALUE);
332 OPENSSL_PUT_ERROR(X509, asn1_cb, ASN1_R_ILLEGAL_NESTED_TAGGING);
378 OPENSSL_PUT_ERROR(X509, asn1_cb, ASN1_R_UNKOWN_FORMAT);
  /external/chromium_org/third_party/boringssl/src/include/openssl/
asn1t.h 674 ASN1_aux_cb *asn1_cb; member in struct:ASN1_AUX_st
704 /* operation values for asn1_cb */
  /external/openssl/include/openssl/
asn1t.h 727 ASN1_aux_cb *asn1_cb; member in struct:ASN1_AUX_st
757 /* operation values for asn1_cb */

Completed in 529 milliseconds