Lines Matching defs:out
37 {"out", OPT_OUT, '>', "Output file"},
52 BIO *out = NULL;
105 out = bio_open_default(outfile, 'w', format);
106 if (out == NULL)
113 out = BIO_push(b64, out);
127 if (BIO_write(out, buf, chunk) != chunk)
131 if (BIO_printf(out, "%02x", buf[i]) != 2)
137 BIO_puts(out, "\n");
138 if (BIO_flush(out) <= 0)
147 BIO_free_all(out);