HomeSort by relevance Sort by last modified time
    Searched refs:sarg (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/boringssl/src/crypto/asn1/
bio_ndef.c 111 ASN1_STREAM_ARG sarg; local
135 sarg.out = out;
136 sarg.ndef_bio = NULL;
137 sarg.boundary = NULL;
139 if (aux->asn1_cb(ASN1_OP_STREAM_PRE, &val, it, &sarg) <= 0)
144 ndef_aux->ndef_bio = sarg.ndef_bio;
145 ndef_aux->boundary = sarg.boundary;
150 return sarg.ndef_bio;
219 ASN1_STREAM_ARG sarg; local
229 sarg.ndef_bio = ndef_aux->ndef_bio
    [all...]
  /external/openssl/crypto/asn1/
bio_ndef.c 106 ASN1_STREAM_ARG sarg; local
130 sarg.out = out;
131 sarg.ndef_bio = NULL;
132 sarg.boundary = NULL;
134 if (aux->asn1_cb(ASN1_OP_STREAM_PRE, &val, it, &sarg) <= 0)
139 ndef_aux->ndef_bio = sarg.ndef_bio;
140 ndef_aux->boundary = sarg.boundary;
145 return sarg.ndef_bio;
214 ASN1_STREAM_ARG sarg; local
224 sarg.ndef_bio = ndef_aux->ndef_bio
    [all...]
asn_mime.c 379 ASN1_STREAM_ARG sarg; local
398 sarg.out = out;
399 sarg.ndef_bio = NULL;
400 sarg.boundary = NULL;
404 if (aux->asn1_cb(ASN1_OP_DETACHED_PRE, &val, it, &sarg) <= 0)
408 SMIME_crlf_copy(data, sarg.ndef_bio, flags);
411 if (aux->asn1_cb(ASN1_OP_DETACHED_POST, &val, it, &sarg) <= 0)
416 while (sarg.ndef_bio != out)
418 tmpbio = BIO_pop(sarg.ndef_bio);
419 BIO_free(sarg.ndef_bio)
    [all...]
  /external/openssl/crypto/pkcs7/
pk7_asn1.c 84 ASN1_STREAM_ARG *sarg = exarg; local
91 if (PKCS7_stream(&sarg->boundary, *pp7) <= 0)
94 sarg->ndef_bio = PKCS7_dataInit(*pp7, sarg->out);
95 if (!sarg->ndef_bio)
101 if (PKCS7_dataFinal(*pp7, sarg->ndef_bio) <= 0)
  /external/openssl/crypto/cms/
cms_asn1.c 318 ASN1_STREAM_ARG *sarg = exarg; local
328 if (CMS_stream(&sarg->boundary, cms) <= 0)
331 sarg->ndef_bio = CMS_dataInit(cms, sarg->out);
332 if (!sarg->ndef_bio)
338 if (CMS_dataFinal(cms, sarg->ndef_bio) <= 0)

Completed in 389 milliseconds