Home
last modified time | relevance | path

Searched refs:btmp (Results 1 – 8 of 8) sorted by relevance

/external/openssl/crypto/conf/
Dconf_lib.c117 BIO *btmp; in LHASH_OF() local
119 if(!(btmp = BIO_new_fp(fp, BIO_NOCLOSE))) { in LHASH_OF()
123 ltmp = CONF_load_bio(conf, btmp, eline); in LHASH_OF()
124 BIO_free(btmp); in LHASH_OF()
208 BIO *btmp; in CONF_dump_fp() local
211 if(!(btmp = BIO_new_fp(out, BIO_NOCLOSE))) { in CONF_dump_fp()
215 ret = CONF_dump_bio(conf, btmp); in CONF_dump_fp()
216 BIO_free(btmp); in CONF_dump_fp()
279 BIO *btmp; in NCONF_load_fp() local
281 if(!(btmp = BIO_new_fp(fp, BIO_NOCLOSE))) in NCONF_load_fp()
[all …]
Dconf_def.c218 char btmp[DECIMAL_SIZE(eline)+1]; in def_load_bio() local
450 BIO_snprintf(btmp,sizeof btmp,"%ld",eline); in def_load_bio()
451 ERR_add_error_data(2,"line ",btmp); in def_load_bio()
/external/openssl/crypto/pkcs7/
Dpk7_doit.c107 BIO *btmp; in PKCS7_bio_add_digest() local
109 if ((btmp=BIO_new(BIO_f_md())) == NULL) in PKCS7_bio_add_digest()
122 BIO_set_md(btmp,md); in PKCS7_bio_add_digest()
124 *pbio=btmp; in PKCS7_bio_add_digest()
125 else if (!BIO_push(*pbio,btmp)) in PKCS7_bio_add_digest()
130 btmp=NULL; in PKCS7_bio_add_digest()
135 if (btmp) in PKCS7_bio_add_digest()
136 BIO_free(btmp); in PKCS7_bio_add_digest()
259 BIO *out=NULL,*btmp=NULL; in PKCS7_dataInit() local
325 if ((btmp=BIO_new(BIO_f_cipher())) == NULL) in PKCS7_dataInit()
[all …]
/external/openssl/crypto/x509v3/
Dv3_utl.c215 char *btmp; in X509V3_get_value_bool() local
216 if(!(btmp = value->value)) goto err; in X509V3_get_value_bool()
217 if(!strcmp(btmp, "TRUE") || !strcmp(btmp, "true") in X509V3_get_value_bool()
218 || !strcmp(btmp, "Y") || !strcmp(btmp, "y") in X509V3_get_value_bool()
219 || !strcmp(btmp, "YES") || !strcmp(btmp, "yes")) { in X509V3_get_value_bool()
222 } else if(!strcmp(btmp, "FALSE") || !strcmp(btmp, "false") in X509V3_get_value_bool()
223 || !strcmp(btmp, "N") || !strcmp(btmp, "n") in X509V3_get_value_bool()
224 || !strcmp(btmp, "NO") || !strcmp(btmp, "no")) { in X509V3_get_value_bool()
/external/openssl/crypto/asn1/
Da_strex.c524 BIO *btmp; in X509_NAME_print_ex_fp() local
526 btmp = BIO_new_fp(fp, BIO_NOCLOSE); in X509_NAME_print_ex_fp()
527 if(!btmp) return -1; in X509_NAME_print_ex_fp()
528 ret = X509_NAME_print(btmp, nm, indent); in X509_NAME_print_ex_fp()
529 BIO_free(btmp); in X509_NAME_print_ex_fp()
/external/chromium/third_party/icu/source/tools/tzcode/
Dlocaltime.c177 const struct tm * btmp);
1659 tmcomp(atmp, btmp) in tmcomp() argument
1661 register const struct tm * const btmp;
1665 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
1666 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1667 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1668 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1669 (result = (atmp->tm_min - btmp->tm_min)) == 0)
1670 result = atmp->tm_sec - btmp->tm_sec;
/external/icu4c/tools/tzcode/
Dlocaltime.c177 const struct tm * btmp);
1659 tmcomp(atmp, btmp) in tmcomp() argument
1661 register const struct tm * const btmp;
1665 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
1666 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1667 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1668 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1669 (result = (atmp->tm_min - btmp->tm_min)) == 0)
1670 result = atmp->tm_sec - btmp->tm_sec;
/external/openssl/apps/
Dapps.c678 BIO *btmp; in app_get_pass() local
686 btmp = BIO_new(BIO_f_buffer()); in app_get_pass()
687 pwdbio = BIO_push(btmp, pwdbio); in app_get_pass()
1762 BIGNUM *btmp; in rand_serial() local
1765 btmp = b; in rand_serial()
1767 btmp = BN_new(); in rand_serial()
1769 if (!btmp) in rand_serial()
1772 if (!BN_pseudo_rand(btmp, SERIAL_RAND_BITS, 0, 0)) in rand_serial()
1774 if (ai && !BN_to_ASN1_INTEGER(btmp, ai)) in rand_serial()
1782 BN_free(btmp); in rand_serial()