Home
last modified time | relevance | path

Searched refs:tmp (Results 276 – 300 of 1192) sorted by relevance

1...<<11121314151617181920>>...48

/PHP-7.3/ext/standard/tests/file/
H A Dis_executable_variation1.phpt24 $fp = fopen("$file_path/is_executable_variation1/bar.tmp", "w");
30 "$file_path/is_executable_variation1/bar.tmp",
33 "$file_path/is_executable_variation1/bar.tmp/",
36 "$file_path/is_executable_variation1//bar.tmp",
37 "$file_path/is_executable_variation1/*.tmp",
38 "$file_path/is_executable_variation1/b*.tmp",
63 unlink(dirname(__FILE__)."/is_executable_variation1/bar.tmp");
H A D006_basic.phpt9 $filename = dirname(__FILE__)."/006_root_check.tmp";
33 fopen($path."/perm.tmp", "w");
34 var_dump( chmod($path."/perm.tmp", 0755 ) );
35 printf("%o", fileperms($path."/perm.tmp") );
49 unlink(dirname(__FILE__)."/perm.tmp");
H A Drename_variation6-win32.phpt17 $tmp_file = __FILE__.".tmp";
18 $tmp_link = __FILE__.".tmp.link";
19 $tmp_link2 = __FILE__.".tmp.link2";
40 string(%d) "%srename_variation6-win32.php.tmp"
H A Drename_variation11-win32.phpt26 $fromFile = "renameMe.tmp";
27 $toFile = "IwasRenamed.tmp";
95 ….\\..\renameVar11Sub\renameMe.tmp,%s\renameVar11\renameVar11Sub\..\\\renameVar11Sub\\..\\..\rename…
100 …e(%s\renameVar11\renameVar11Sub\BADDIR\renameMe.tmp,%s\renameVar11\renameVar11Sub\BADDIR\IwasRenam…
121 Warning: rename(BADDIR\renameMe.tmp,BADDIR\IwasRenamed.tmp): The system cannot find the path specif…
H A Drename_variation12-win32.phpt27 $fromFile = "renameMe.tmp";
28 $toFile = "IwasRenamed.tmp";
92 ….//../renameVar11Sub/renameMe.tmp,%s/renameVar11/renameVar11Sub/..///renameVar11Sub//..//../rename…
97 …e(%s/renameVar11/renameVar11Sub/BADDIR/renameMe.tmp,%s/renameVar11/renameVar11Sub/BADDIR/IwasRenam…
118 Warning: rename(BADDIR/renameMe.tmp,BADDIR/IwasRenamed.tmp): The system cannot find the path specif…
H A Dcopy_variation15.phpt8 $filename = dirname(__FILE__)."/copy_variation15_root_check.tmp";
29 $file = $file_path."/copy_variation15.tmp";
41 $dest = $dir."/copy_copy_variation15.tmp";
43 var_dump( copy($file, $dir."/copy_copy_variation15.tmp") );
44 var_dump( file_exists($dir."/copy_copy_variation15_dir.tmp") );
53 unlink(dirname(__FILE__)."/copy_variation15.tmp");
H A Dcopy_variation9.phpt9 $filename = dirname(__FILE__)."/copy_variation9_root_check.tmp";
30 $src_file_name = $file_path."/copy_variation9.tmp";
35 $dest_file_name = $file_path."/copy_copy_variation9.tmp";
45 chmod($file_path."/copy_copy_variation9.tmp", 0555); //No write permissions
55 unlink(dirname(__FILE__)."/copy_copy_variation9.tmp");
56 unlink(dirname(__FILE__)."/copy_variation9.tmp");
H A D005_variation-win32.phpt51 stat_fn("$file_path/005_variation1.tmp");
56 stat_fn("$file_path/005_variation2.tmp");
61 stat_fn("$file_path/005_variation3.tmp");
64 unlink("$file_path/005_variation1.tmp");
65 unlink("$file_path/005_variation2.tmp");
66 unlink("$file_path/005_variation3.tmp");
69 $file_name = "$file_path/005_variation1.tmp";
99 $file_copy = "$file_path/005_variation_copy.tmp";
149 unlink($file_path."/005_variation1.tmp");
150 unlink($file_path."/005_variation_copy.tmp");
[all …]
H A Dfile_error.phpt12 $file_handle = fopen($file_path."/file.tmp", "w");
15 $filename = $file_path."/file.tmp";
21 var_dump( file("temp.tmp") ); // non existing filename
29 unlink($file_path."/file.tmp");
44 Warning: file(temp.tmp): failed to open stream: No such file or directory in %s on line %d
H A Drename_variation2-win32.phpt22 $fp = fopen($file_path."/rename_variation2.tmp", "w");
26 var_dump( rename($file_path."/rename_variation2.tmp", $file_path."/12345") );
29 var_dump( file_exists($file_path."/rename_variation2.tmp" ) ); // expecting false
48 unlink($file_path."/rename_variation2_link.tmp");
49 unlink($file_path."/rename_variation2.tmp");
/PHP-7.3/ext/sockets/
H A Dsockaddr_conv.c18 struct in6_addr tmp; in php_set_inet6_addr() local
25 if (inet_pton(AF_INET6, string, &tmp)) { in php_set_inet6_addr()
26 memcpy(&(sin6->sin6_addr.s6_addr), &(tmp.s6_addr), sizeof(struct in6_addr)); in php_set_inet6_addr()
87 struct in_addr tmp; in php_set_inet_addr() local
90 if (inet_aton(string, &tmp)) { in php_set_inet_addr()
91 sin->sin_addr.s_addr = tmp.s_addr; in php_set_inet_addr()
/PHP-7.3/Zend/tests/
H A Dbug55509.phpt20 $tmp = explode(":", $line);
21 $index = strtolower($tmp[0]);
22 $value = (int)ltrim($tmp[1], " ")*1024;
37 $tmp = explode(":", $line);
38 $index = strtolower($tmp[0]);
39 $value = trim($tmp[1], " ");
H A Dbug30998.phpt14 $f = fopen("/tmp/blah", "r");
18 fopen(/tmp/blah): failed to open stream: %s (2) in %s:%d
20 Warning: fopen(/tmp/blah): failed to open stream: %s in %s on line %d
/PHP-7.3/ext/standard/
H A Dcyr_convert.c205 unsigned char tmp; in php_convert_cyr_string() local
260 tmp = (from_table == NULL)? str[i] : from_table[ str[i] ]; in php_convert_cyr_string()
261 str[i] = (to_table == NULL) ? tmp : to_table[tmp + 256]; in php_convert_cyr_string()
/PHP-7.3/ext/standard/tests/network/
H A Dunixloop.phpt11 if (file_exists("/tmp/$uniqid.sock"))
15 $server = stream_socket_server("unix:///tmp/$uniqid.sock");
21 $client = stream_socket_client("unix:///tmp/$uniqid.sock");
40 unlink("/tmp/$uniqid.sock");
/PHP-7.3/ext/mysqli/tests/
H A Dmysqli_store_result_buffered_c.phpt15 $tmp = NULL;
28 if (true !== ($tmp = mysqli_data_seek($res, 2)))
30 gettype($tmp), $tmp, mysqli_errno($link), mysqli_error($link));
H A Dmysqli_reap_async_query.phpt28 if (NULL !== ($tmp = @mysqli_reap_async_query()))
29 printf("[002] Expecting NULL got %s\n", var_export($tmp, true));
32 if (NULL !== ($tmp = @mysqli_reap_async_query($l)))
33 printf("[003] Expecting NULL got %s\n", var_export($tmp, true));
35 if (NULL !== ($tmp = @mysqli_reap_async_query($link, $link)))
36 printf("[004] Expecting NULL got %s\n", var_export($tmp, true));
41 if ($exp_ready !== ($tmp = mysqli_poll($links, $errors, $reject, 0, 2000)))
43 $offset, $exp_ready, $tmp);
H A Dmysqli_debug_append.phpt27 …if (true !== ($tmp = mysqli_debug(sprintf('d:t:O,%s/mysqli_debug_phpt.trace', sys_get_temp_dir()))…
28 printf("[001] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
55 if (true !== ($tmp = mysqli_debug(sprintf('d:a,%s', $trace_file))))
56 printf("[006] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
67 if (true !== ($tmp = mysqli_debug(sprintf('d:A,%s', $trace_file))))
68 printf("[009] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysqli_report.phpt13 $tmp = NULL;
16 if (NULL !== ($tmp = @mysqli_report()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (true !== ($tmp = mysqli_report(-1)))
20 printf("[002] Expecting boolean/true even for invalid flags, got %s/%s\n", gettype($tmp), $tmp);
23 printf("[003] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
26 printf("[004] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
29 printf("[005] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
32 printf("[007] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
35 printf("[008] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
[all …]
/PHP-7.3/ext/spl/tests/
H A Diterator_035.phpt6 $tmp = 1;
9 $a[] = $tmp;
10 $a[] = &$tmp;
/PHP-7.3/ext/standard/tests/dir/
H A Dreaddir_variation6-win32-mb.phpt76 string(59) "私はガラスを食べられますreaddir_variation61.tmp"
77 string(59) "私はガラスを食べられますreaddir_variation62.tmp"
78 string(59) "私はガラスを食べられますreaddir_variation63.tmp"
83 string(59) "私はガラスを食べられますreaddir_variation61.tmp"
84 string(59) "私はガラスを食べられますreaddir_variation62.tmp"
85 string(59) "私はガラスを食べられますreaddir_variation63.tmp"
H A Dreaddir_variation6.phpt70 string(23) "readdir_variation61.tmp"
71 string(23) "readdir_variation62.tmp"
72 string(23) "readdir_variation63.tmp"
77 string(23) "readdir_variation61.tmp"
78 string(23) "readdir_variation62.tmp"
79 string(23) "readdir_variation63.tmp"
H A Dbug72625.phpt36 $tmp = $f0;
37 while ($tmp > $base) {
38 rmdir($tmp);
39 $tmp = dirname($tmp);
/PHP-7.3/main/
H A Dphp_ini.c41 char *tmp = path; \
42 while (*tmp) { \
43 if (*tmp == '\\') *tmp = '/'; \
44 else *tmp = tolower(*tmp); \
45 tmp++; \
633 zval tmp; in php_init_config() local
642 php_ini_opened_path = zend_strndup(Z_STRVAL(tmp), Z_STRLEN(tmp)); in php_init_config()
893 zval *tmp; local
924 zval *tmp; local
939 zval *tmp; local
[all …]
/PHP-7.3/sapi/fpm/fpm/
H A Dfpm_events.c227 struct fpm_event_queue_s *q, *tmp; in fpm_event_queue_destroy() local
239 tmp = q; in fpm_event_queue_destroy()
242 free(tmp); in fpm_event_queue_destroy()
388 struct timeval tmp; in fpm_event_loop() local
418 timersub(&ms, &now, &tmp); in fpm_event_loop()
419 timeout = (tmp.tv_sec * 1000) + (tmp.tv_usec / 1000) + 1; in fpm_event_loop()
499 struct timeval tmp; in fpm_event_add() local
521 tmp.tv_sec = frequency / 1000; in fpm_event_add()
524 tmp.tv_sec = 0; in fpm_event_add()
525 tmp.tv_usec = frequency * 1000; in fpm_event_add()
[all …]

Completed in 49 milliseconds

1...<<11121314151617181920>>...48