Lines Matching defs:out
46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
69 /* -out file - write to file
86 BIO *out = NULL;
105 if (strcmp(argv[i], "-out") == 0)
167 BIO_printf(bio_err, "-out file - write to file\n");
186 out = BIO_new(BIO_s_file());
187 if (out == NULL)
190 r = BIO_write_filename(out, outfile);
193 r = BIO_set_fp(out, stdout, BIO_NOCLOSE | BIO_FP_TEXT);
197 out = BIO_push(tmpbio, out);
209 out = BIO_push(b64, out);
224 BIO_write(out, buf, chunk);
228 BIO_printf(out, "%02x", buf[i]);
233 BIO_puts(out, "\n");
234 (void)BIO_flush(out);
241 if (out)
242 BIO_free_all(out);