Home
last modified time | relevance | path

Searched refs:outfile (Results 1 – 12 of 12) sorted by relevance

/PHP-7.4/ext/tokenizer/
H A Dtokenizer_data_gen.sh9 outfile="ext/tokenizer/tokenizer_data.c"
46 ' > $outfile
48 echo 'void tokenizer_register_constants(INIT_FUNC_ARGS) {' >> $outfile
52 ' < $infile >> $outfile
53 …_LONG_CONSTANT("T_DOUBLE_COLON", T_PAAMAYIM_NEKUDOTAYIM, CONST_CS | CONST_PERSISTENT);' >> $outfile
54 echo '}' >> $outfile
61 ' >> $outfile
72 ' < $infile >> $outfile
78 ' >> $outfile
80 echo "Wrote $outfile"
/PHP-7.4/ext/openssl/tests/
H A Dopenssl_pkcs7_encrypt_basic.phpt8 $outfile = tempnam(sys_get_temp_dir(), "ssl");
9 if ($outfile === false)
24 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $single_cert, $headers));
29 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $single_cert, $wrong));
30 var_dump(openssl_pkcs7_encrypt($wrong, $outfile, $single_cert, $headers));
31 var_dump(openssl_pkcs7_encrypt($empty, $outfile, $single_cert, $headers));
33 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $wrong, $headers));
34 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $empty, $headers));
35 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $single_cert, $empty));
39 if (file_exists($outfile)) {
[all …]
H A Dopenssl_pkcs7_decrypt_basic.phpt12 $outfile = tempnam(sys_get_temp_dir(), "ssl");
13 if ($outfile === false) {
14 unlink($outfile);
26 var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, $single_cert, $wrong));
27 var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, $wrong, $privkey));
28 var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, null, $privkey));
29 var_dump(openssl_pkcs7_decrypt($wrong, $outfile, $single_cert, $privkey));
30 var_dump(openssl_pkcs7_decrypt($empty, $outfile, $single_cert, $privkey));
32 var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, $empty, $privkey));
39 if (file_exists($outfile)) {
[all …]
H A Dopenssl_pkcs7_sign_basic.phpt8 $outfile = tempnam(sys_get_temp_dir(), "ssl");
9 if ($outfile === false) {
22 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $privkey, $headers));
25 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $privkey, $wrong));
26 var_dump(openssl_pkcs7_sign($wrong, $outfile, $single_cert, $privkey, $headers));
29 var_dump(openssl_pkcs7_sign($infile, $outfile, $wrong, $privkey, $headers));
30 var_dump(openssl_pkcs7_sign($infile, $outfile, $empty, $privkey, $headers));
31 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $privkey, $empty));
32 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $wrong, $headers));
34 if (file_exists($outfile)) {
[all …]
H A Dopenssl_pkcs7_verify_basic.phpt7 $outfile = tempnam(sys_get_temp_dir(), "ssl");
8 if ($outfile === false) {
27 var_dump(openssl_pkcs7_verify($eml, PKCS7_NOVERIFY, $outfile));
28 var_dump(openssl_pkcs7_verify($eml, PKCS7_NOVERIFY, $outfile, $cainfo, $outfile, $contentfile));
29 var_dump(openssl_pkcs7_verify($eml, PKCS7_NOVERIFY, $outfile, $cainfo, $outfile, $contentfile, $pkc…
32 if (file_exists($outfile)) {
34 unlink($outfile);
/PHP-7.4/ext/gd/libgd/
H A Dgd_jpeg.c135 static int _gdImageJpegCtx(gdImagePtr im, gdIOCtx *outfile, int quality);
167 void jpeg_gdIOCtx_dest (j_compress_ptr cinfo, gdIOCtx * outfile);
169 void gdImageJpegCtx (gdImagePtr im, gdIOCtx * outfile, int quality) in gdImageJpegCtx() argument
171 _gdImageJpegCtx(im, outfile, quality); in gdImageJpegCtx()
175 static int _gdImageJpegCtx(gdImagePtr im, gdIOCtx *outfile, int quality) in _gdImageJpegCtx() argument
223 jpeg_gdIOCtx_dest (&cinfo, outfile); in _gdImageJpegCtx()
755 gdIOCtx *outfile; /* target stream */ member
807 if (gdPutBuf (dest->buffer, OUTPUT_BUF_SIZE, dest->outfile) != (size_t) OUTPUT_BUF_SIZE) { in empty_output_buffer()
833 if (datacount > 0 && ((size_t)gdPutBuf (dest->buffer, datacount, dest->outfile) != datacount)) { in term_destination()
845 void jpeg_gdIOCtx_dest (j_compress_ptr cinfo, gdIOCtx * outfile) in jpeg_gdIOCtx_dest() argument
[all …]
H A Dgd_webp.c103 void gdImageWebpCtx (gdImagePtr im, gdIOCtx * outfile, int quantization) in gdImageWebpCtx() argument
159 gdPutBuf(out, out_size, outfile); in gdImageWebpCtx()
H A Dgd_gif_out.c93 static void compress (int init_bits, gdIOCtx *outfile, gdImagePtr im, GifCtx *ctx);
506 compress(int init_bits, gdIOCtxPtr outfile, gdImagePtr im, GifCtx *ctx) argument
521 ctx->g_outfile = outfile;
H A Dgd_png.c475 void gdImagePngCtx (gdImagePtr im, gdIOCtx * outfile) in gdImagePngCtx() argument
477 gdImagePngCtxEx(im, outfile, -1, -1); in gdImagePngCtx()
484 void gdImagePngCtxEx (gdImagePtr im, gdIOCtx * outfile, int level, int basefilter) in gdImagePngCtxEx() argument
528 png_set_write_fn(png_ptr, (void *) outfile, gdPngWriteData, gdPngFlushData); in gdImagePngCtxEx()
H A Dgd.h618 void gdImageWebpCtx (gdImagePtr im, gdIOCtx * outfile, int quantization);
/PHP-7.4/win32/build/
H A Dconfutils.js1800 var infile, outfile;
1822 outfile.Write(indata);
1823 outfile.Close();
2177 var outfile = null;
2234 if (outfile) {
2235 outfile.Close();
2236 outfile = null;
2245 outfile.Close();
2250 var infile, outfile;
2265 outfile.Write(indata);
[all …]
/PHP-7.4/ext/openssl/
H A Dopenssl.c297 ZEND_ARG_INFO(0, outfile)
306 ZEND_ARG_INFO(0, outfile)
5301 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
5332 if (outfile == NULL) { in PHP_FUNCTION()
5406 BIO_printf(outfile, "%s\n", ZSTR_VAL(str)); in PHP_FUNCTION()
5415 if (!SMIME_write_PKCS7(outfile, p7, infile, (int)flags)) { in PHP_FUNCTION()
5425 BIO_free(outfile); in PHP_FUNCTION()
5546 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
5597 if (outfile == NULL) { in PHP_FUNCTION()
5624 ret = BIO_printf(outfile, "%s\n", ZSTR_VAL(str)); in PHP_FUNCTION()
[all …]

Completed in 41 milliseconds