Home | History | Annotate | Download | only in apps

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
78 " -out arg - output file - default stdout\n",
95 BIO *out=NULL;
130 else if (strcmp(*argv,"-out") == 0)
203 out=BIO_new(BIO_s_file());
204 if (out == NULL)
212 BIO_set_fp(out,stdout,BIO_NOCLOSE);
216 out = BIO_push(tmpbio, out);
222 if (BIO_write_filename(out,outfile) <= 0)
232 SSL_SESSION_print(out,x);
237 BIO_puts(out,"No certificate present\n");
239 X509_print(out,peer);
246 i=i2d_SSL_SESSION_bio(out,x);
248 i=PEM_write_bio_SSL_SESSION(out,x);
261 i=(int)i2d_X509_bio(out,peer);
263 i=PEM_write_bio_X509(out,peer);
275 if (out != NULL) BIO_free_all(out);