Home
last modified time | relevance | path

Searched refs:sarg (Results 1 – 4 of 4) sorted by relevance

/external/openssl/crypto/asn1/
Dbio_ndef.c106 ASN1_STREAM_ARG sarg; in BIO_new_NDEF() local
130 sarg.out = out; in BIO_new_NDEF()
131 sarg.ndef_bio = NULL; in BIO_new_NDEF()
132 sarg.boundary = NULL; in BIO_new_NDEF()
134 if (aux->asn1_cb(ASN1_OP_STREAM_PRE, &val, it, &sarg) <= 0) in BIO_new_NDEF()
139 ndef_aux->ndef_bio = sarg.ndef_bio; in BIO_new_NDEF()
140 ndef_aux->boundary = sarg.boundary; in BIO_new_NDEF()
145 return sarg.ndef_bio; in BIO_new_NDEF()
214 ASN1_STREAM_ARG sarg; in ndef_suffix() local
224 sarg.ndef_bio = ndef_aux->ndef_bio; in ndef_suffix()
[all …]
Dasn_mime.c379 ASN1_STREAM_ARG sarg; in asn1_output_data() local
394 sarg.out = out; in asn1_output_data()
395 sarg.ndef_bio = NULL; in asn1_output_data()
396 sarg.boundary = NULL; in asn1_output_data()
400 if (aux->asn1_cb(ASN1_OP_DETACHED_PRE, &val, it, &sarg) <= 0) in asn1_output_data()
404 SMIME_crlf_copy(data, sarg.ndef_bio, flags); in asn1_output_data()
407 if (aux->asn1_cb(ASN1_OP_DETACHED_POST, &val, it, &sarg) <= 0) in asn1_output_data()
412 while (sarg.ndef_bio != out) in asn1_output_data()
414 tmpbio = BIO_pop(sarg.ndef_bio); in asn1_output_data()
415 BIO_free(sarg.ndef_bio); in asn1_output_data()
[all …]
/external/openssl/crypto/pkcs7/
Dpk7_asn1.c84 ASN1_STREAM_ARG *sarg = exarg; in pk7_cb() local
91 if (PKCS7_stream(&sarg->boundary, *pp7) <= 0) in pk7_cb()
94 sarg->ndef_bio = PKCS7_dataInit(*pp7, sarg->out); in pk7_cb()
95 if (!sarg->ndef_bio) in pk7_cb()
101 if (PKCS7_dataFinal(*pp7, sarg->ndef_bio) <= 0) in pk7_cb()
/external/qemu/
Dqemu-char.c1220 int sarg = 0; in tty_serial_ioctl() local
1222 ioctl(s->fd_in, TIOCMGET, &sarg); in tty_serial_ioctl()
1224 if (sarg & TIOCM_CTS) in tty_serial_ioctl()
1226 if (sarg & TIOCM_CAR) in tty_serial_ioctl()
1228 if (sarg & TIOCM_DSR) in tty_serial_ioctl()
1230 if (sarg & TIOCM_RI) in tty_serial_ioctl()
1232 if (sarg & TIOCM_DTR) in tty_serial_ioctl()
1234 if (sarg & TIOCM_RTS) in tty_serial_ioctl()
1240 int sarg = *(int *)arg; in tty_serial_ioctl() local
1245 if (sarg & CHR_TIOCM_CTS) in tty_serial_ioctl()
[all …]