Lines Matching defs:out
35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
80 " -text - print out a text format version\n",
82 " -out arg - output file - default stdout\n",
110 BIO *out=NULL;
178 else if (strcmp(*argv,"-out") == 0)
350 BIO_printf(bio_err,"out of memory\n");
365 out=BIO_new(BIO_s_file());
366 if (out == NULL)
374 BIO_set_fp(out,stdout,BIO_NOCLOSE);
378 out = BIO_push(tmpbio, out);
384 if (BIO_write_filename(out,outfile) <= 0)
391 if (text) X509_CRL_print(out, x);
400 i=(int)i2d_X509_CRL_bio(out,x);
402 i=PEM_write_bio_X509_CRL(out,x);
411 BIO_free_all(out);