Lines Matching refs:infile
281 ZEND_ARG_INFO(0, infile)
290 ZEND_ARG_INFO(0, infile)
4208 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
4233 infile = BIO_new_file(infilename, "r"); in PHP_FUNCTION()
4234 if (infile == NULL) { in PHP_FUNCTION()
4296 p7 = PKCS7_encrypt(recipcerts, infile, (EVP_CIPHER*)cipher, flags); in PHP_FUNCTION()
4321 (void)BIO_reset(infile); in PHP_FUNCTION()
4324 SMIME_write_PKCS7(outfile, p7, infile, flags); in PHP_FUNCTION()
4330 BIO_free(infile); in PHP_FUNCTION()
4349 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
4392 infile = BIO_new_file(infilename, "r"); in PHP_FUNCTION()
4393 if (infile == NULL) { in PHP_FUNCTION()
4404 p7 = PKCS7_sign(cert, privkey, others, infile, flags); in PHP_FUNCTION()
4410 (void)BIO_reset(infile); in PHP_FUNCTION()
4430 SMIME_write_PKCS7(outfile, p7, infile, flags); in PHP_FUNCTION()
4436 BIO_free(infile); in PHP_FUNCTION()