Lines Matching defs:in
10 * Redistribution and use in source and binary forms, with or without
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in
25 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
33 * nor may "OpenSSL" appear in their names without prior written
39 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
44 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
49 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
51 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
76 /* -in arg - input file - default stdin
86 BIO *in = NULL,*out = NULL;
112 if (strcmp(*argv,"-in") == 0)
170 BIO_printf(bio_err," -in arg input file\n");
233 if (infile) in = BIO_new_file(infile, "r");
234 else in = BIO_new_fp(stdin, BIO_NOCLOSE);
236 if(!in) {
243 i = NCONF_load_bio(conf, in, NULL);
302 BIO_free(in);