Lines Matching refs:outfile

5324 	BIO * infile = NULL, * outfile = NULL;  in PHP_FUNCTION()  local
5349 outfile = php_openssl_bio_new_file(outfilename, outfilename_len, 2, PHP_OPENSSL_BIO_MODE_W(flags)); in PHP_FUNCTION()
5350 if (outfile == NULL) { in PHP_FUNCTION()
5423 BIO_printf(outfile, "%s: %s\n", ZSTR_VAL(strindex), ZSTR_VAL(str)); in PHP_FUNCTION()
5425 BIO_printf(outfile, "%s\n", ZSTR_VAL(str)); in PHP_FUNCTION()
5434 if (!SMIME_write_PKCS7(outfile, p7, infile, (int)flags)) { in PHP_FUNCTION()
5444 BIO_free(outfile); in PHP_FUNCTION()
5563 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
5614outfile = php_openssl_bio_new_file(outfilename, outfilename_len, 2, PHP_OPENSSL_BIO_MODE_W(PKCS7_B… in PHP_FUNCTION()
5615 if (outfile == NULL) { in PHP_FUNCTION()
5639 ret = BIO_printf(outfile, "%s: %s\n", ZSTR_VAL(strindex), ZSTR_VAL(str)); in PHP_FUNCTION()
5641 ret = BIO_printf(outfile, "%s\n", ZSTR_VAL(str)); in PHP_FUNCTION()
5650 if (!SMIME_write_PKCS7(outfile, p7, infile, (int)flags)) { in PHP_FUNCTION()
5660 BIO_free(outfile); in PHP_FUNCTION()
5926 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
5955 outfile = php_openssl_bio_new_file( in PHP_FUNCTION()
5957 if (outfile == NULL) { in PHP_FUNCTION()
6032 BIO_printf(outfile, "%s: %s\n", ZSTR_VAL(strindex), ZSTR_VAL(str)); in PHP_FUNCTION()
6034 BIO_printf(outfile, "%s\n", ZSTR_VAL(str)); in PHP_FUNCTION()
6044 if (!SMIME_write_CMS(outfile, cms, infile, (int)flags)) { in PHP_FUNCTION()
6056 if (i2d_CMS_bio(outfile, cms) != 1) { in PHP_FUNCTION()
6069 if (PEM_write_bio_CMS_stream(outfile, cms, infile, flags) == 0) { in PHP_FUNCTION()
6074 if (PEM_write_bio_CMS(outfile, cms) == 0) { in PHP_FUNCTION()
6092 BIO_free(outfile); in PHP_FUNCTION()
6210 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
6281 outfile = php_openssl_bio_new_file( in PHP_FUNCTION()
6283 if (outfile == NULL) { in PHP_FUNCTION()
6309 ret = BIO_printf(outfile, "%s: %s\n", ZSTR_VAL(strindex), ZSTR_VAL(str)); in PHP_FUNCTION()
6311 ret = BIO_printf(outfile, "%s\n", ZSTR_VAL(str)); in PHP_FUNCTION()
6322 if (!SMIME_write_CMS(outfile, cms, infile, (int)flags)) { in PHP_FUNCTION()
6334 if (i2d_CMS_bio(outfile, cms) != 1) { in PHP_FUNCTION()
6347 if (PEM_write_bio_CMS_stream(outfile, cms, infile, flags) == 0) { in PHP_FUNCTION()
6352 if (PEM_write_bio_CMS(outfile, cms) == 0) { in PHP_FUNCTION()
6369 BIO_free(outfile); in PHP_FUNCTION()