Home
last modified time | relevance | path

Searched refs:strtmp (Results 1 – 2 of 2) sorted by relevance

/external/boringssl/src/crypto/asn1/
Dtasn_enc.c548 ASN1_STRING *strtmp; in asn1_ex_i2c() local
568 strtmp = (ASN1_STRING *)*pval; in asn1_ex_i2c()
569 utype = strtmp->type; in asn1_ex_i2c()
644 strtmp = (ASN1_STRING *)*pval; in asn1_ex_i2c()
647 && (strtmp->flags & ASN1_STRING_FLAG_NDEF)) { in asn1_ex_i2c()
649 strtmp->data = cout; in asn1_ex_i2c()
650 strtmp->length = 0; in asn1_ex_i2c()
655 cont = strtmp->data; in asn1_ex_i2c()
656 len = strtmp->length; in asn1_ex_i2c()
/external/boringssl/src/crypto/x509v3/
Dv3_utl.c201 char *strtmp = NULL; in i2s_ASN1_ENUMERATED() local
205 !(strtmp = bignum_to_string(bntmp))) in i2s_ASN1_ENUMERATED()
208 return strtmp; in i2s_ASN1_ENUMERATED()
214 char *strtmp = NULL; in i2s_ASN1_INTEGER() local
218 !(strtmp = bignum_to_string(bntmp))) in i2s_ASN1_INTEGER()
221 return strtmp; in i2s_ASN1_INTEGER()
275 char *strtmp; in X509V3_add_value_int() local
279 if (!(strtmp = i2s_ASN1_INTEGER(NULL, aint))) in X509V3_add_value_int()
281 ret = X509V3_add_value(name, strtmp, extlist); in X509V3_add_value_int()
282 OPENSSL_free(strtmp); in X509V3_add_value_int()