Lines Matching refs:it
24 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
25 static int bn_secure_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
26 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
29 const ASN1_ITEM *it);
31 int utype, char *free_cont, const ASN1_ITEM *it);
33 int utype, char *free_cont, const ASN1_ITEM *it);
34 static int bn_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it,
65 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) in ASN1_ITEM_start()
74 static int bn_secure_new(ASN1_VALUE **pval, const ASN1_ITEM *it) in bn_secure_new() argument
83 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it) in bn_free() argument
87 if (it->size & BN_SENSITIVE) in bn_free()
95 const ASN1_ITEM *it) in bn_i2c() argument
116 int utype, char *free_cont, const ASN1_ITEM *it) in bn_c2i() argument
120 if (*pval == NULL && !bn_new(pval, it)) in bn_c2i()
124 bn_free(pval, it); in bn_c2i()
131 int utype, char *free_cont, const ASN1_ITEM *it) in bn_secure_c2i() argument
136 if (*pval == NULL && !bn_secure_new(pval, it)) in bn_secure_c2i()
139 ret = bn_c2i(pval, cont, len, utype, free_cont, it); in bn_secure_c2i()
149 static int bn_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it, in bn_print() argument