Home
last modified time | relevance | path

Searched refs:tmpfile (Results 1 – 25 of 37) sorted by path

12

/php-src/build/
H A Dshtool444 tmpfile="$tmpdir/shtool.tmp"
445 touch "$tmpfile"
1723 rm -f $tmpfile >/dev/null 2>&1
1724 touch $tmpfile
1747 rm -f $tmpfile >/dev/null 2>&1
1755 echo >>$tmpfile.c "Syntax Error"
1758 (eval "$cpp $tmpfile.c >/dev/null") 2>$tmpfile.out
1763 (eval "$cpp $tmpfile.c >/dev/null") 2>$tmpfile.out
1775 (eval "$cpp $tmpfile.c >/dev/null") 2>$tmpfile.out
1784 rm -f $tmpfile >/dev/null 2>&1
[all …]
/php-src/docs-old/
H A Dstreams.md79 /* Open a FILE * with tmpfile() and convert into a stream. */
/php-src/ext/curl/tests/
H A Dbug62839.phpt9 $fd = tmpfile();
/php-src/ext/ftp/tests/
H A D007.phpt11 $ftp = tmpfile();
H A Dftp_fget_basic.phpt18 $fp = tmpfile();
/php-src/ext/gd/libgd/
H A Dgd_bmp.c107 if ((tmpfile_for_compression = tmpfile()) == NULL) { in gdImageBmpCtx()
/php-src/ext/hash/tests/
H A Dhash_update_stream.phpt7 $fp = tmpfile();
H A Dhash_update_stream_basic_001.phpt17 $fp = tmpfile();
/php-src/ext/mysqli/tests/
H A Dgh9590.phpt25 $fds[] = @fopen(__DIR__ . "/GH-9590-tmpfile.$i", 'w');
67 @unlink(__DIR__ . "/GH-9590-tmpfile.$i");
/php-src/ext/pdo/tests/
H A Dbug_34630.phpt28 $fp = tmpfile();
/php-src/ext/standard/
H A Dbasic_functions.stub.php2864 function tmpfile() {}
H A Dbasic_functions_arginfo.h2664 ZEND_FUNCTION(tmpfile);
3301 ZEND_FE(tmpfile, arginfo_tmpfile)
H A Dfile.c718 PHP_FUNCTION(tmpfile) in PHP_FUNCTION() argument
/php-src/ext/standard/tests/file/
H A Dbug22414.phpt14 $tmpfile = tempnam(__DIR__, 'phpt');
25 …scaped . $args . ' -r ' . escapeshellarg('passthru("'.$cmd.'");') . ' > '.escapeshellarg($tmpfile);
27 …scaped . $args . ' -r ' . "\"passthru('".addslashes($cmd)."');\"" . ' > '.escapeshellarg($tmpfile);
31 if (md5_file($php) == md5_file($tmpfile)) {
37 @unlink($tmpfile);
H A Dbug27619.phpt5 $fp = tmpfile();
H A Dfile_get_contents_file_put_contents_5gb.phpt33 $tmpfile = sys_get_temp_dir() . DIRECTORY_SEPARATOR . "file_get_contents_file_put_contents_5gb.bin";
34 $tmpfileh = fopen($tmpfile, "wb");
39 unlink($tmpfile);
40 if (disk_free_space(dirname($tmpfile)) < 10 * 1024 * 1024 * 1024) {
48 $tmpfile = sys_get_temp_dir() . DIRECTORY_SEPARATOR . "file_get_contents_file_put_contents_5gb.bin";
52 $result = file_put_contents($tmpfile, $large_string);
61 $result_large_string = file_get_contents($tmpfile);
69 clearstatcache(true, $tmpfile);
70 if (file_exists($tmpfile)) {
71 unlink($tmpfile);
H A Dfopen_variation12.phpt12 $tmpfile = basename(__FILE__, ".php") . ".tmp";
13 $h = fopen($tmpfile, "w", true);
18 $h = @fopen($tmpfile, "r");
25 unlink($tmpfile);
29 $scriptDirFile = __DIR__.'/'.$tmpfile;
H A Dfopen_variation13.phpt22 $tmpfile = 'fopen_variation13.tmp';
23 $absFile = getcwd().'/'.$tempDir.'/'.$tmpfile;
H A Dfopen_variation16.phpt33 $tmpfile = $extraDir.'/fopen_variation16.tmp';
35 $h = fopen($tmpfile, "w+", true);
39 $h = @fopen($dir1.'/'.$tmpfile, "r");
48 $h = fopen($tmpfile, "r", true);
57 unlink($tmpfile);
H A Dfopen_variation17.phpt33 $tmpfile = $extraDir . '/' . basename(__FILE__, ".php") . ".tmp";
34 $h = fopen($tmpfile, "w+", true);
38 $h = @fopen($dir1.'/'.$tmpfile, "r");
47 $h = fopen($tmpfile, "r", true);
56 unlink($tmpfile);
H A Dfopen_variation7.phpt26 $tmpfile = basename(__FILE__, ".php") . ".tmp";
27 $h = fopen($tmpfile, "w", true);
32 $h = @fopen($tmpfile, "r");
39 unlink($tmpfile);
42 $h = @fopen($dir1.'/'.$tmpfile, "r");
49 unlink($dir1.'/'.$tmpfile);
H A Dfopen_variation9.phpt26 $tmpfile = basename(__FILE__, ".php") . ".tmp";
27 $h = fopen($tmpfile, "w", true);
32 $h = @fopen($tmpfile, "r");
39 unlink($tmpfile);
42 $h = @fopen('dir1/'.$tmpfile, "r");
49 unlink('dir1/'.$tmpfile);
H A Duserfilters.phpt26 $fp = tmpfile();
H A Duserstreams.phpt68 $tf = tmpfile();
73 die("tmpfile is not at start!");
76 die("tmpfile stored $n bytes; should be $DATALEN!");
/php-src/ext/standard/tests/filters/
H A Dbasic.phpt11 $fp = tmpfile();

Completed in 65 milliseconds

12