HomeSort by relevance Sort by last modified time
    Searched defs:stmp (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/boringssl/src/crypto/x509/
x509_att.c 282 ASN1_STRING *stmp = NULL; local
286 stmp = ASN1_STRING_set_by_NID(NULL, data, len, attrtype,
288 if(!stmp) {
292 atype = stmp->type;
294 if(!(stmp = ASN1_STRING_type_new(attrtype))) goto err;
295 if(!ASN1_STRING_set(stmp, data, len)) goto err;
313 ASN1_TYPE_set(ttmp, atype, stmp);
by_dir.c 283 X509_OBJECT stmp,*tmp; local
288 stmp.type=type;
293 stmp.data.x509= &data.x509.st_x509;
300 stmp.data.crl= &data.crl.st_crl;
420 if (sk_X509_OBJECT_find(xl->store_ctx->objs, &idx, &stmp)) {
x509_lu.c 305 X509_OBJECT stmp,*tmp; local
317 j=X509_LOOKUP_by_subject(lu,type,name,&stmp);
325 tmp= &stmp;
440 X509_OBJECT stmp; local
447 stmp.type=type;
451 stmp.data.x509= &x509_s;
456 stmp.data.crl= &crl_s;
466 if (sk_X509_OBJECT_find(h, &idx, &stmp) && pnmatch)
471 pstmp = &stmp;
a_strex.c 547 ASN1_STRING stmp, *str = &stmp; local
555 stmp.data = NULL;
556 stmp.length = 0;
559 *out = stmp.data;
560 return stmp.length;
  /external/openssl/crypto/x509/
x509_att.c 288 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);
by_dir.c 289 X509_OBJECT stmp,*tmp; local
294 stmp.type=type;
299 stmp.data.x509= &data.x509.st_x509;
306 stmp.data.crl= &data.crl.st_crl;
422 j = sk_X509_OBJECT_find(xl->store_ctx->objs,&stmp);
x509_lu.c 294 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/chromium_org/third_party/boringssl/src/crypto/evp/
p_rsa_asn1.c 461 ASN1_STRING *stmp = NULL; local
469 !ASN1_item_pack(algtmp, ASN1_ITEM_rptr(X509_ALGOR), &stmp)) {
476 X509_ALGOR_set0(*palg, OBJ_nid2obj(NID_mgf1), V_ASN1_SEQUENCE, stmp);
477 stmp = NULL;
480 if (stmp)
481 ASN1_STRING_free(stmp);
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
echo_cancellation.c 474 int stmp; local
535 stmp = metrics->erl.average + metrics->erle.average;
537 stmp = kOffsetLevel;
539 metrics->rerl.average = stmp;
542 metrics->rerl.instant = stmp;
543 metrics->rerl.max = stmp;
544 metrics->rerl.min = stmp;
  /external/openssl/crypto/rsa/
rsa_ameth.c 618 ASN1_STRING *stmp = NULL; local
623 &stmp))
630 V_ASN1_SEQUENCE, stmp);
  /external/chromium_org/third_party/boringssl/src/crypto/asn1/
tasn_dec.c 888 ASN1_STRING *stmp; local
992 stmp = ASN1_STRING_type_new(utype);
993 if (!stmp)
998 *pval = (ASN1_VALUE *)stmp;
1002 stmp = (ASN1_STRING *)*pval;
1003 stmp->type = utype;
1008 if (stmp->data)
1009 OPENSSL_free(stmp->data);
1010 stmp->data = (unsigned char *)cont; /* UGLY CAST! RL */
1011 stmp->length = len
    [all...]
  /external/openssl/crypto/asn1/
a_strex.c 561 ASN1_STRING stmp, *str = &stmp; local
569 stmp.data = NULL;
570 stmp.length = 0;
571 stmp.flags = 0;
574 *out = stmp.data;
575 return stmp.length;
tasn_dec.c 923 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->length = len
    [all...]
  /external/openssl/apps/
apps.c 2450 char *stmp, *vtmp = NULL; local
    [all...]
s_client.c 1264 BIO *stmp = BIO_new_file(sess_in, "r"); local
1582 BIO *stmp = BIO_new_file(sess_out, "w"); local
    [all...]

Completed in 331 milliseconds