Lines Matching defs:out
51 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
77 * -out arg - output file - default stdout
86 BIO *in = NULL,*out = NULL;
117 else if (strcmp(*argv,"-out") == 0)
171 BIO_printf(bio_err," -out arg output file\n");
209 if (outfile) out = BIO_new_file(outfile, "w");
211 out = BIO_new_fp(stdout, BIO_NOCLOSE);
215 out = BIO_push(tmpbio, out);
220 if(!out) {
225 BIO_printf(out, "SPKAC=%s\n", spkstr);
267 if (outfile) out = BIO_new_file(outfile, "w");
269 out = BIO_new_fp(stdout, BIO_NOCLOSE);
273 out = BIO_push(tmpbio, out);
278 if(!out) {
284 if(!noout) NETSCAPE_SPKI_print(out, spki);
295 if(pubkey) PEM_write_bio_PUBKEY(out, pkey);
303 BIO_free_all(out);