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

  /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/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
394 sarg.out = out;
395 sarg.ndef_bio = NULL;
396 sarg.boundary = NULL;
400 if (aux->asn1_cb(ASN1_OP_DETACHED_PRE, &val, it, &sarg) <= 0)
404 SMIME_crlf_copy(data, sarg.ndef_bio, flags);
407 if (aux->asn1_cb(ASN1_OP_DETACHED_POST, &val, it, &sarg) <= 0)
412 while (sarg.ndef_bio != out)
414 tmpbio = BIO_pop(sarg.ndef_bio);
415 BIO_free(sarg.ndef_bio)
    [all...]
  /external/qemu/
qemu-char.c 1220 int sarg = 0; local
1222 ioctl(s->fd_in, TIOCMGET, &sarg);
1224 if (sarg & TIOCM_CTS)
1226 if (sarg & TIOCM_CAR)
1228 if (sarg & TIOCM_DSR)
1230 if (sarg & TIOCM_RI)
1232 if (sarg & TIOCM_DTR)
1234 if (sarg & TIOCM_RTS)
1240 int sarg = *(int *)arg; local
1245 if (sarg & CHR_TIOCM_CTS
    [all...]

Completed in 535 milliseconds