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
102 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
138 * -out arg - output file - default stdout
157 BIO *in=NULL,*out=NULL;
200 else if (strcmp(*argv,"-out") == 0)
247 BIO_printf(bio_err," -out arg output file\n");
410 out=BIO_new(BIO_s_file());
411 if (out == NULL)
418 BIO_set_fp(out,stdout,BIO_NOCLOSE);
422 out = BIO_push(tmpbio, out);
428 if (BIO_write_filename(out,outfile) <= 0)
438 DHparams_print(out,dh);
513 i=i2d_DHparams_bio(out,dh);
515 i=PEM_write_bio_DHparams(out,dh);
530 if (out != NULL) BIO_free_all(out);