Lines Matching defs:out
36 * The word 'cryptographic' can be left out if the rouines from the library
51 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
80 * -out arg - output file - default stdout
93 BIO *in=NULL,*out=NULL;
137 else if (strcmp(*argv,"-out") == 0)
175 BIO_printf(bio_err," -out arg output file\n");
193 out=BIO_new(BIO_s_file());
194 if ((in == NULL) || (out == NULL))
212 BIO_set_fp(out,stdout,BIO_NOCLOSE);
216 out = BIO_push(tmpbio, out);
222 if (BIO_write_filename(out,outfile) <= 0)
249 DHparams_print(out,dh);
327 i=i2d_DHparams_bio(out,dh);
329 i=PEM_write_bio_DHparams(out,dh);
344 if (out != NULL) BIO_free_all(out);