Home
last modified time | relevance | path

Searched refs:temp (Results 176 – 200 of 241) sorted by relevance

12345678910

/PHP-7.4/ext/standard/tests/file/
H A Dsymlink_link_linkinfo_is_link_variation6.phpt26 // temp file used
H A Dtouch_variation5.phpt147 $temp = stat($path);
148 return $temp['atime'];
H A Dtempnam_variation1-win32-mb.phpt39 echo "temp dir\n";
H A Dtempnam_variation1-win32.phpt39 echo "temp dir\n";
H A Dtempnam_variation3.phpt58 echo "temp dir\n";
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 Dis_writable_variation1.phpt46 "$file_path/is_writable_variation1" // temp directory, exp: bool(true)
H A Dtempnam_variation1.phpt43 echo "temp dir\n";
H A Dreadlink_realpath_variation1.phpt24 // create a temp file
H A Dreadlink_realpath_variation1-win32.phpt27 // create a temp file
H A Dstat_basic-win32-mb.phpt21 /* creating temp directory and file */
H A Dstat_basic-win32.phpt21 /* creating temp directory and file */
H A Dreadlink_realpath_variation2.phpt20 // create temp dir
H A Dsymlink_link_linkinfo_is_link_variation9.phpt28 // temp file used
H A Dreadlink_realpath_variation2-win32.phpt23 // create temp dir
/PHP-7.4/Zend/
H A Dzend_virtual_cwd.c1210 char *temp; in virtual_chdir_file() local
1229 temp = (char *) do_alloca(length+1, use_heap); in virtual_chdir_file()
1230 memcpy(temp, path, length); in virtual_chdir_file()
1231 temp[length] = 0; in virtual_chdir_file()
1233 fprintf (stderr, "Changing directory to %s\n", temp); in virtual_chdir_file()
1235 retval = p_chdir(temp); in virtual_chdir_file()
1236 free_alloca(temp, use_heap); in virtual_chdir_file()
/PHP-7.4/ext/phar/
H A Dphar.c1622 php_stream *temp; in phar_open_from_fp() local
1637 if (!(temp = php_stream_fopen_tmpfile())) { in phar_open_from_fp()
1651 php_stream_close(temp); in phar_open_from_fp()
1662 php_stream_close(temp); in phar_open_from_fp()
1665 php_stream_close(temp); in phar_open_from_fp()
1672 fp = temp; in phar_open_from_fp()
1685 php_stream *temp; in phar_open_from_fp() local
1692 if (!(temp = php_stream_fopen_tmpfile())) { in phar_open_from_fp()
1700 php_stream_close(temp); in phar_open_from_fp()
1707 php_stream_close(temp); in phar_open_from_fp()
[all …]
H A Dutil.c119 zend_off_t temp, eoffset; in phar_seek_efp() local
141 temp = eoffset + entry->uncompressed_filesize + offset; in phar_seek_efp()
144 temp = eoffset + position + offset; in phar_seek_efp()
147 temp = eoffset + offset; in phar_seek_efp()
150 temp = 0; in phar_seek_efp()
153 if (temp > eoffset + (zend_off_t) entry->uncompressed_filesize) { in phar_seek_efp()
157 if (temp < eoffset) { in phar_seek_efp()
161 return php_stream_seek(fp, temp, SEEK_SET); in phar_seek_efp()
/PHP-7.4/ext/imap/tests/
H A Dimap_fetch_overview_variation5.phpt23 $stream_id = setup_test_mailbox('', 3, $mailbox, 'notSimple'); // set up temp mailbox with 3 msgs
/PHP-7.4/ext/gd/libgd/
H A Dgd_bmp.c1063 int temp = (index >> (8 - (j * info->depth))) & ((1 << info->depth) - 1); in bmp_read_rle() local
1064 if (im->open[temp]) { in bmp_read_rle()
1065 im->open[temp] = 0; in bmp_read_rle()
1067 gdImageSetPixel(im, xpos, row, temp); in bmp_read_rle()
/PHP-7.4/ext/standard/tests/strings/
H A Dmd5_file.phpt69 // remove temp files
H A Dsha1_file.phpt67 // remove temp files
/PHP-7.4/ext/standard/
H A Dmath.c1103 zval *number, temp; in PHP_FUNCTION() local
1126 if(_php_math_basetozval(number, (int)frombase, &temp) == FAILURE) { in PHP_FUNCTION()
1129 result = _php_math_zvaltobase(&temp, (int)tobase); in PHP_FUNCTION()
H A Dimage.c1467 char temp[MAX_LENGTH_OF_LONG * 2 + sizeof("width=\"\" height=\"\"")]; in php_getimagesize_from_stream() local
1472 snprintf(temp, sizeof(temp), "width=\"%d\" height=\"%d\"", result->width, result->height); in php_getimagesize_from_stream()
1473 add_index_string(return_value, 3, temp); in php_getimagesize_from_stream()

Completed in 66 milliseconds

12345678910