Home | History | Annotate | Download | only in apps

Lines Matching defs:out

49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
73 static void receipt_request_print(BIO *out, CMS_ContentInfo *cms);
120 BIO *in = NULL, *out = NULL, *indata = NULL, *rctin = NULL;
505 else if (!strcmp (*args, "-out"))
636 BIO_printf (bio_err, "-out file output file\n");
871 if (!(out = BIO_new_file(outfile, outmode)))
880 out = BIO_new_fp(stdout, BIO_NOCLOSE);
884 out = BIO_push(tmpbio, out);
1079 if (!CMS_decrypt(cms, NULL, NULL, indata, out, flags))
1087 if (!CMS_data(cms, out, flags))
1092 if (!CMS_uncompress(cms, indata, out, flags))
1097 if (CMS_digest_verify(cms, indata, out, flags) > 0)
1108 indata, out, flags))
1113 if (CMS_verify(cms, other, store, indata, out, flags) > 0)
1155 CMS_ContentInfo_print_ctx(out, cms, 0, NULL);
1160 BIO_printf(out, "To: %s\n", to);
1162 BIO_printf(out, "From: %s\n", from);
1164 BIO_printf(out, "Subject: %s\n", subject);
1166 ret = SMIME_write_CMS(out, cms, indata, flags);
1168 ret = SMIME_write_CMS(out, cms, in, flags);
1171 ret = PEM_write_bio_CMS_stream(out, cms, in, flags);
1173 ret = i2d_CMS_bio_stream(out,cms, in, flags);
1223 BIO_free_all(out);
1263 static void gnames_stack_print(BIO *out, STACK_OF(GENERAL_NAMES) *gns)
1274 BIO_puts(out, " ");
1275 GENERAL_NAME_print(out, gen);
1276 BIO_puts(out, "\n");
1282 static void receipt_request_print(BIO *out, CMS_ContentInfo *cms)
1310 BIO_puts(out, " Signed Content ID:\n");
1313 BIO_dump_indent(out, id, idlen, 4);
1314 BIO_puts(out, " Receipts From");
1317 BIO_puts(out, " List:\n");
1318 gnames_stack_print(out, rlist);
1321 BIO_puts(out, ": First Tier\n");
1323 BIO_puts(out, ": All\n");
1325 BIO_printf(out, " Unknown (%d)\n", allorfirst);
1326 BIO_puts(out, " Receipts To:\n");
1327 gnames_stack_print(out, rto);