HomeSort by relevance Sort by last modified time
    Searched refs:pval (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/boringssl/src/crypto/asn1/
tasn_fre.c 63 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)
74 asn1_item_combine_free(pval, it, 0);
77 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine)
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, it, NULL)
    [all...]
x_bignum.c 71 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)
96 *pval = (ASN1_VALUE *)BN_new();
97 if(*pval) return 1;
101 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
103 if(!*pval) return;
104 if(it->size & BN_SENSITIVE) BN_clear_free((BIGNUM *)*pval);
    [all...]
tasn_new.c 67 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
69 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
70 static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
71 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
83 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
85 return asn1_item_ex_combine_new(pval, it, 0);
88 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
115 if (!ef->asn1_ex_new(pval, it))
123 *pval = cf->asn1_new();
124 if (!*pval)
    [all...]
tasn_utl.c 76 int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it) {
77 int *sel = offset2ptr(*pval, it->utype);
82 int asn1_set_choice_selector(ASN1_VALUE **pval, int value,
85 sel = offset2ptr(*pval, it->utype);
91 static CRYPTO_refcount_t *asn1_get_references(ASN1_VALUE **pval,
101 return offset2ptr(*pval, aux->ref_offset);
104 void asn1_refcount_set_one(ASN1_VALUE **pval, const ASN1_ITEM *it) {
105 CRYPTO_refcount_t *references = asn1_get_references(pval, it);
111 int asn1_refcount_dec_and_test_zero(ASN1_VALUE **pval, const ASN1_ITEM *it) {
112 CRYPTO_refcount_t *references = asn1_get_references(pval, it)
    [all...]
x_long.c 72 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
73 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
75 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
76 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
77 static int long_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, const ASN1_PCTX *pctx);
97 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
99 *(long *)pval = it->size;
103 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
105 *(long *)pval = it->size;
108 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it
    [all...]
tasn_enc.c 65 static int asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out,
71 static int asn1_template_ex_i2d(ASN1_VALUE **pval, unsigned char **out,
128 int ASN1_item_ex_i2d(ASN1_VALUE **pval, unsigned char **out,
139 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval)
150 return asn1_template_ex_i2d(pval, out, it->templates,
152 return asn1_i2d_ex_primitive(pval, out, it, tag, aclass);
156 return asn1_i2d_ex_primitive(pval, out, it, -1, aclass);
159 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL))
161 i = asn1_get_choice_selector(pval, it);
167 pchval = asn1_get_field_ptr(pval, chtt)
    [all...]
tasn_dec.c 83 static int asn1_template_ex_d2i(ASN1_VALUE **pval,
91 static int asn1_d2i_ex_primitive(ASN1_VALUE **pval,
129 ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **pval,
134 if (!pval)
135 pval = &ptmpval;
137 if (ASN1_item_ex_d2i(pval, in, len, it, -1, 0, 0, &c) > 0)
138 return *pval;
142 int ASN1_template_d2i(ASN1_VALUE **pval,
147 return asn1_template_ex_d2i(pval, in, len, tt, 0, &c);
155 int ASN1_item_ex_d2i(ASN1_VALUE **pval, const unsigned char **in, long len
    [all...]
  /external/boringssl/src/crypto/dh/
dh_asn1.c 64 static int dh_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
67 *pval = (ASN1_VALUE *)DH_new();
68 if (*pval) {
73 DH_free((DH *)*pval);
74 *pval = NULL;
  /bionic/libc/kernel/uapi/linux/tc_act/
tc_gact.h 36 __u16 pval; member in struct:tc_gact_p
  /development/ndk/platforms/android-21/include/linux/tc_act/
tc_gact.h 36 __u16 pval; member in struct:tc_gact_p
  /external/iproute2/include/linux/tc_act/
tc_gact.h 19 __u16 pval; member in struct:tc_gact_p
  /external/kernel-headers/original/uapi/linux/tc_act/
tc_gact.h 19 __u16 pval; member in struct:tc_gact_p
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/tc_act/
tc_gact.h 21 __u16 pval; member in struct:tc_gact_p
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/tc_act/
tc_gact.h 19 __u16 pval; member in struct:tc_gact_p
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/tc_act/
tc_gact.h 36 __u16 pval; member in struct:tc_gact_p
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/tc_act/
tc_gact.h 36 __u16 pval; member in struct:tc_gact_p
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/tc_act/
tc_gact.h 36 __u16 pval; member in struct:tc_gact_p
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/tc_act/
tc_gact.h 36 __u16 pval; member in struct:tc_gact_p
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/tc_act/
tc_gact.h 36 __u16 pval; member in struct:tc_gact_p
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/tc_act/
tc_gact.h 36 __u16 pval; member in struct:tc_gact_p
  /external/boringssl/src/crypto/dsa/
dsa_asn1.c 67 static int dsa_sig_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
81 *pval = (ASN1_VALUE *)sig;
92 static int dsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
96 *pval = (ASN1_VALUE *)DSA_new();
97 if (*pval) {
103 DSA_free((DSA *)*pval);
104 *pval = NULL;
  /external/boringssl/src/crypto/rsa/
rsa_asn1.c 65 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
68 *pval = (ASN1_VALUE *)RSA_new();
69 if (*pval) {
74 RSA_free((RSA *)*pval);
75 *pval = NULL;
  /external/boringssl/src/crypto/pkcs8/
p8_pkey.c 64 static int pkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
68 PKCS8_PRIV_KEY_INFO *key = (PKCS8_PRIV_KEY_INFO *)*pval;
  /external/boringssl/src/crypto/x509/
x_req.c 81 static int rinf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
84 X509_REQ_INFO *rinf = (X509_REQ_INFO *)*pval;
  /external/clang/test/Analysis/
casts.c 34 void f1(struct s **pval) {
36 struct s *t = *pval;
37 pval = &(t->value);
38 tbool = (int *)pval; // use the cast-to type 'int *' to create element region.

Completed in 235 milliseconds

1 2 3