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
72 BIO *in = NULL, *out = NULL;
92 if (!strcmp (*args, "-in"))
132 BIO_printf(bio_err, "-in file input file\n");
148 if (!(in = BIO_new_file (infile, "r")))
156 in = BIO_new_fp (stdin, BIO_NOCLOSE);
178 pkey = PEM_read_bio_Parameters(in, NULL);
197 BIO_free(in);