Home
last modified time | relevance | path

Searched refs:temp (Results 151 – 175 of 219) sorted by relevance

123456789

/PHP-5.5/ext/standard/tests/file/
H A Dlstat_stat_variation9.phpt28 mkdir("$file_path/lstat_stat_variation9/"); // temp dir
H A Dsymlink_link_linkinfo_is_link_variation5.phpt32 // create temp dir
H A Dtempnam_variation3-win32.phpt19 echo "Failed, cannot create temp dir $filepath\n";
H A Dumask_variation2.phpt20 // temp filename used
22 // temp dir used
33 // creating temp file
42 // delete temp file created here
46 // create temp dir
54 // delete temp dir created
H A Drealpath_variation-win32.phpt23 // create a temp file
H A Dtouch_variation5.phpt147 $temp = stat($path);
148 return $temp['atime'];
H A Dtempnam_variation1-win32.phpt39 echo "temp dir\n";
H A Dis_readable_variation1.phpt56 "$file_path/is_readable_variation1" // temp directory, exp: bool(true)
H A Dtouch_variation5-win32.phpt147 $temp = stat($path);
148 return $temp['atime'];
H A Dtouch_variation6-win32.phpt153 $temp = stat($path);
154 return $temp['atime'];
H A Dtempnam_variation1.phpt43 echo "temp dir\n";
H A Dsymlink_link_linkinfo_is_link_variation6.phpt45 // temp file used
H A Dtempnam_variation3.phpt56 echo "temp dir\n";
/PHP-5.5/ext/imap/tests/
H A Dimap_fetchheader_basic.phpt18 $stream_id = setup_test_mailbox('', 1, $mailbox, 'multiPart'); // setup temp mailbox with 1 msg
H A Dimap_fetchheader_variation5.phpt23 $stream_id = setup_test_mailbox('', 3, $mailbox, 'notSimple'); // set up temp mailbox with 3 msgs
H A Dimap_fetch_overview_variation6.phpt22 $stream_id = setup_test_mailbox('', 0, $mailbox); // setup temp mailbox
H A Dimap_close_variation4.phpt25 $stream_id = setup_test_mailbox('', 3, $mailbox); // set up temp mailbox with 3 messages
H A Dimap_fetch_overview_variation5.phpt23 $stream_id = setup_test_mailbox('', 3, $mailbox, 'notSimple'); // set up temp mailbox with 3 msgs
/PHP-5.5/ext/standard/tests/dir/
H A Ddir_basic.phpt44 // delete temp files
/PHP-5.5/ext/pdo_pgsql/tests/
H A Dbug62479.phpt49 // Create temp user with space in password
/PHP-5.5/ext/phar/
H A Dphar.c1602 php_stream *temp; local
1617 if (!(temp = php_stream_fopen_tmpfile())) {
1631 php_stream_close(temp);
1642 php_stream_close(temp);
1645 php_stream_close(temp);
1652 fp = temp;
1661 php_stream *temp; local
1668 if (!(temp = php_stream_fopen_tmpfile())) {
1676 php_stream_close(temp);
1683 php_stream_close(temp);
[all …]
/PHP-5.5/ext/standard/
H A Darray.c1740 Bucket **elems, *temp; in php_array_data_shuffle() local
1754 for (j = 0, temp = hash->pListHead; temp; temp = temp->pListNext) in php_array_data_shuffle()
1755 elems[j++] = temp; in php_array_data_shuffle()
1760 temp = elems[n_left]; in php_array_data_shuffle()
1762 elems[rnd_idx] = temp; in php_array_data_shuffle()
1779 temp = hash->pListHead; in php_array_data_shuffle()
1781 while (temp != NULL) { in php_array_data_shuffle()
1782 temp->nKeyLength = 0; in php_array_data_shuffle()
1783 temp->h = j++; in php_array_data_shuffle()
1784 temp = temp->pListNext; in php_array_data_shuffle()
[all …]
/PHP-5.5/
H A Dserver-tests.php1429 $temp = "";
1447 $temp = $temp . preg_quote(substr($wanted_re, $startOffset, ($start - $startOffset)), '/');
1450 $temp = $temp . '(' . substr($wanted_re, $start+2, ($end - $start-2)). ')';
1454 $wanted_re = $temp;
H A Drun-tests.php1921 $temp = "";
1939 $temp = $temp . preg_quote(substr($wanted_re, $startOffset, ($start - $startOffset)), '/');
1942 $temp = $temp . '(' . substr($wanted_re, $start+2, ($end - $start-2)). ')';
1946 $wanted_re = $temp;
2718 $temp = array_intersect(array('XFAIL', 'FAIL', 'WARN'), $type);
2719 $type = reset($temp);
/PHP-5.5/TSRM/
H A Dtsrm_virtual_cwd.c1368 char *temp; in virtual_chdir_file() local
1387 temp = (char *) tsrm_do_alloca(length+1, use_heap); in virtual_chdir_file()
1388 memcpy(temp, path, length); in virtual_chdir_file()
1389 temp[length] = 0; in virtual_chdir_file()
1391 fprintf (stderr, "Changing directory to %s\n", temp); in virtual_chdir_file()
1393 retval = p_chdir(temp TSRMLS_CC); in virtual_chdir_file()
1394 tsrm_free_alloca(temp, use_heap); in virtual_chdir_file()

Completed in 63 milliseconds

123456789