Searched refs:stmp (Results 1 - 9 of 9) sorted by relevance

/external/openssl/crypto/x509/
H A Dx509_att.c288 ASN1_STRING *stmp = NULL; local
292 stmp = ASN1_STRING_set_by_NID(NULL, data, len, attrtype,
294 if(!stmp) {
298 atype = stmp->type;
300 if(!(stmp = ASN1_STRING_type_new(attrtype))) goto err;
301 if(!ASN1_STRING_set(stmp, data, len)) goto err;
319 ASN1_TYPE_set(ttmp, atype, stmp);
H A Dby_dir.c291 X509_OBJECT stmp,*tmp; local
296 stmp.type=type;
301 stmp.data.x509= &data.x509.st_x509;
308 stmp.data.crl= &data.crl.st_crl;
424 j = sk_X509_OBJECT_find(xl->store_ctx->objs,&stmp);
H A Dx509_lu.c294 X509_OBJECT stmp,*tmp; local
306 j=X509_LOOKUP_by_subject(lu,type,name,&stmp);
314 tmp= &stmp;
429 X509_OBJECT stmp; local
436 stmp.type=type;
440 stmp.data.x509= &x509_s;
445 stmp.data.crl= &crl_s;
454 idx = sk_X509_OBJECT_find(h,&stmp);
460 pstmp = &stmp;
/external/openssl/crypto/asn1/
H A Dtasn_dec.c923 ASN1_STRING *stmp; local
1031 stmp = ASN1_STRING_type_new(utype);
1032 if (!stmp)
1038 *pval = (ASN1_VALUE *)stmp;
1042 stmp = (ASN1_STRING *)*pval;
1043 stmp->type = utype;
1048 if (stmp->data)
1049 OPENSSL_free(stmp->data);
1050 stmp->data = (unsigned char *)cont; /* UGLY CAST! RL */
1051 stmp
[all...]
H A Da_strex.c561 ASN1_STRING stmp, *str = &stmp; local
569 stmp.data = NULL;
572 *out = stmp.data;
573 return stmp.length;
/external/webrtc/src/modules/audio_processing/aec/
H A Decho_cancellation.c706 short stmp; local
766 stmp = metrics->erl.average + metrics->erle.average;
769 stmp = offsetLevel;
771 metrics->rerl.average = stmp;
774 metrics->rerl.instant = stmp;
775 metrics->rerl.max = stmp;
776 metrics->rerl.min = stmp;
/external/openssl/crypto/rsa/
H A Drsa_ameth.c618 ASN1_STRING *stmp = NULL; local
623 &stmp))
630 V_ASN1_SEQUENCE, stmp);
/external/openssl/apps/
H A Ds_client.c1221 BIO *stmp = BIO_new_file(sess_in, "r"); local
1222 if (!stmp)
1229 sess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL);
1230 BIO_free(stmp);
1535 BIO *stmp = BIO_new_file(sess_out, "w"); local
1536 if (stmp)
1538 PEM_write_bio_SSL_SESSION(stmp, SSL_get_session(con));
1539 BIO_free(stmp);
H A Dapps.c2443 char *stmp, *vtmp = NULL; local
2444 stmp = BUF_strdup(value);
2445 if (!stmp)
2447 vtmp = strchr(stmp, ':');
2453 rv = EVP_PKEY_CTX_ctrl_str(ctx, stmp, vtmp);
2454 OPENSSL_free(stmp);

Completed in 82 milliseconds