Lines Matching defs:in
8 * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
31 * nor may "OpenSSL" appear in their names without prior written
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
73 BIO *in = NULL, *out = NULL;
84 else if (!strcmp (*args, "-in")) {
102 BIO_printf (bio_err, "-in file input file\n");
109 if (!(in = BIO_new_file (infile, "r"))) {
114 } else in = BIO_new_fp(stdin, BIO_NOCLOSE);
134 while((x509 = PEM_read_bio_X509(in, NULL, NULL, NULL)))
148 if (!(seq = PEM_read_bio_NETSCAPE_CERT_SEQUENCE(in, NULL, NULL, NULL))) {
161 BIO_free(in);