Searched defs:pval (Results 1 - 25 of 56) sorted by relevance

123

/external/chromium_org/third_party/boringssl/src/crypto/dh/
H A Ddh_asn1.c64 static int dh_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
67 *pval = (ASN1_VALUE *)DH_new();
68 if (*pval) {
73 DH_free((DH *)*pval);
74 *pval = NULL;
/external/openssl/crypto/dh/
H A Ddh_asn1.c67 static int dh_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
71 *pval = (ASN1_VALUE *)DH_new();
72 if(*pval) return 2;
75 DH_free((DH *)*pval);
76 *pval = NULL;
/external/openssl/crypto/rsa/
H A Drsa_asn1.c67 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
71 *pval = (ASN1_VALUE *)RSA_new();
72 if(*pval) return 2;
75 RSA_free((RSA *)*pval);
76 *pval = NULL;
/external/chromium_org/third_party/boringssl/src/crypto/pkcs8/
H A Dp8_pkey.c64 static int pkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
68 PKCS8_PRIV_KEY_INFO *key = (PKCS8_PRIV_KEY_INFO *)*pval;
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx_pubkey.c69 static int pubkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
74 X509_PUBKEY *pubkey = (X509_PUBKEY *)*pval;
340 int ptype, void *pval,
343 if (!X509_ALGOR_set0(pub->algor, aobj, ptype, pval))
H A Dx_req.c81 static int rinf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
84 X509_REQ_INFO *rinf = (X509_REQ_INFO *)*pval;
H A Dx_x509.c87 static int x509_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
90 X509 *ret = (X509 *)*pval;
H A Dx_crl.c98 static int crl_inf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
101 X509_CRL_INFO *a = (X509_CRL_INFO *)*pval;
213 static int crl_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
216 X509_CRL *crl = (X509_CRL *)*pval;
/external/openssl/crypto/asn1/
H A Dnsseq.c65 static int nsseq_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
70 nsseq = (NETSCAPE_CERT_SEQUENCE *)*pval;
H A Dp8_pkey.c65 static int pkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
70 PKCS8_PRIV_KEY_INFO *key = (PKCS8_PRIV_KEY_INFO *)*pval;
89 int ptype, void *pval,
114 if (!X509_ALGOR_set0(priv->pkeyalg, aobj, ptype, pval))
H A Dx_pubkey.c72 static int pubkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
77 X509_PUBKEY *pubkey = (X509_PUBKEY *)*pval;
352 int ptype, void *pval,
355 if (!X509_ALGOR_set0(pub->algor, aobj, ptype, pval))
H A Dx_req.c82 static int rinf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
85 X509_REQ_INFO *rinf = (X509_REQ_INFO *)*pval;
H A Dx_x509.c84 static int x509_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
87 X509 *ret = (X509 *)*pval;
H A Dx_crl.c94 static int crl_inf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
97 X509_CRL_INFO *a = (X509_CRL_INFO *)*pval;
208 static int crl_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
211 X509_CRL *crl = (X509_CRL *)*pval;
H A Dx_bignum.c72 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
73 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
75 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
76 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
95 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
97 *pval = (ASN1_VALUE *)BN_new();
98 if(*pval) return 1;
102 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
104 if(!*pval) return;
105 if(it->size & BN_SENSITIVE) BN_clear_free((BIGNUM *)*pval);
110 bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) argument
126 bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
[all...]
/external/openssl/crypto/dsa/
H A Ddsa_asn1.c67 static int sig_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
80 *pval = (ASN1_VALUE *)sig;
94 static int dsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
98 *pval = (ASN1_VALUE *)DSA_new();
99 if(*pval) return 2;
102 DSA_free((DSA *)*pval);
103 *pval = NULL;
/external/chromium_org/third_party/boringssl/src/crypto/dsa/
H A Ddsa_asn1.c65 static int dsa_sig_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
79 *pval = (ASN1_VALUE *)sig;
90 static int dsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
94 *pval = (ASN1_VALUE *)DSA_new();
95 if (*pval) {
101 DSA_free((DSA *)*pval);
102 *pval = NULL;
/external/chromium_org/third_party/boringssl/src/crypto/rsa/
H A Drsa_asn1.c65 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
68 *pval = (ASN1_VALUE *)RSA_new();
69 if (*pval) {
74 RSA_free((RSA *)*pval);
75 *pval = NULL;
/external/openssl/crypto/cms/
H A Dcms_asn1.c90 static int cms_si_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
95 CMS_SignerInfo *si = (CMS_SignerInfo *)*pval;
217 static int cms_ri_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
222 CMS_RecipientInfo *ri = (CMS_RecipientInfo *)*pval;
315 static int cms_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
320 if (pval)
321 cms = (CMS_ContentInfo *)*pval;
/external/openssl/crypto/pkcs7/
H A Dpk7_asn1.c81 static int pk7_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
85 PKCS7 **pp7 = (PKCS7 **)pval;
130 static int si_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
134 PKCS7_SIGNER_INFO *si = (PKCS7_SIGNER_INFO *)*pval;
173 static int ri_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
177 PKCS7_RECIP_INFO *ri = (PKCS7_RECIP_INFO *)*pval;
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Dx_bignum.c71 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
72 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
74 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
75 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
94 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
96 *pval = (ASN1_VALUE *)BN_new();
97 if(*pval) return 1;
101 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
103 if(!*pval) return;
104 if(it->size & BN_SENSITIVE) BN_clear_free((BIGNUM *)*pval);
109 bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) argument
125 bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
[all...]
H A Dtasn_fre.c63 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine);
72 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
74 asn1_item_combine_free(pval, it, 0);
77 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine) argument
85 if (!pval)
87 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval)
99 ASN1_template_free(pval, it->templates);
101 ASN1_primitive_free(pval, it);
105 ASN1_primitive_free(pval, it);
111 i = asn1_cb(ASN1_OP_FREE_PRE, pval, i
181 ASN1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) argument
202 ASN1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
[all...]
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dcrc32c.cc306 const uintptr_t pval = reinterpret_cast<uintptr_t>(p); local
307 const uint8_t* x = reinterpret_cast<const uint8_t*>(((pval + 3) >> 2) << 2);
/external/iproute2/include/linux/tc_act/
H A Dtc_gact.h19 __u16 pval; member in struct:tc_gact_p
/external/kernel-headers/original/uapi/linux/tc_act/
H A Dtc_gact.h19 __u16 pval; member in struct:tc_gact_p

Completed in 2142 milliseconds

123