Home
last modified time | relevance | path

Searched refs:realpath (Results 1 – 25 of 99) sorted by path

1234

/PHP-7.4/
H A DNEWS710 . Fixed bug #79806 (realpath() erroneously resolves link to link). (cmb)
2286 . Fixed bug #77317 (__DIR__, __FILE__, realpath() reveal physical path for
2291 . Fixed bug #77484 (Zend engine crashes when calling realpath in invalid
H A Dconfigure.ac628 realpath \
/PHP-7.4/Zend/
H A Dzend_virtual_cwd.c79 #define realpath(x,y) strcpy(y,x) macro
382 if(r->path == r->realpath) { in realpath_cache_del()
397 static inline void realpath_cache_add(const char *path, size_t path_len, const char *realpath, size… in realpath_cache_add() argument
403 memcmp(path, realpath, path_len) != 0) { in realpath_cache_add()
421 bucket->realpath = bucket->path; in realpath_cache_add()
423 bucket->realpath = bucket->path + (path_len + 1); in realpath_cache_add()
424 memcpy(bucket->realpath, realpath, realpath_len+1); in realpath_cache_add()
455 if(r->path == r->realpath) { in realpath_cache_find()
598 memcpy(path, bucket->realpath, bucket->realpath_len + 1); in tsrm_realpath_r()
H A Dzend_virtual_cwd.h208 char *realpath; member
H A Dzend_vm_gen.php2376 $definition_file = realpath($def);
2384 $skeleton_file = realpath($skel);
2714 $executor_file = realpath(__DIR__ . "/zend_vm_execute.h");
/PHP-7.4/build/
H A Dphp.m41392 dnl Some systems, notably Solaris, cause getcwd() or realpath to fail if a
/PHP-7.4/ext/
H A Dext_skel.php212 … $options[$opt] = ($opt == 'dir' ? realpath($argv[$i + 1]) . DIRECTORY_SEPARATOR : $argv[$i + 1]);
/PHP-7.4/ext/ftp/tests/
H A Dserver.inc68 /* quick&dirty realpath() like function */
/PHP-7.4/ext/gd/tests/
H A Dbug24155.phpt12 $dest = dirname(realpath(__FILE__)) . '/bug24155.png';
H A Dbug27582_1.phpt9 $dest = dirname(realpath(__FILE__)) . '/bug27582.png';
H A Dimagecopyresampled_basic.phpt18 $dest_lge = dirname(realpath(__FILE__)) . '/imagelarge.png';
19 $dest_sml = dirname(realpath(__FILE__)) . '/imagesmall.png';
61 $dest_lge = dirname(realpath(__FILE__)) . '/imagelarge.png';
62 $dest_sml = dirname(realpath(__FILE__)) . '/imagesmall.png';
H A Dimagedashedline_basic.phpt20 $dest = dirname(realpath(__FILE__)) . '/imagedashedline.png';
52 $dest = dirname(realpath(__FILE__)) . '/imagedashedline.png';
H A Dimagefilledpolygon_basic.phpt18 $dest = dirname(realpath(__FILE__)) . '/imagefilledpolygon.png';
66 $dest = dirname(realpath(__FILE__)) . '/imagefilledpolygon.png';
H A Dimagepolygon_basic.phpt19 $dest = dirname(realpath(__FILE__)) . '/imagepolygon.png';
54 $dest = dirname(realpath(__FILE__)) . '/imagepolygon.png';
/PHP-7.4/ext/gettext/tests/
H A Dbug66267.phpt33 $path = realpath(__DIR__ . DIRECTORY_SEPARATOR . "66265");
/PHP-7.4/ext/mysqli/tests/
H A Dconnect.inc35 return realpath( $_ENV['TMP'] );
37 return realpath( $_ENV['TMPDIR'] );
39 return realpath( $_ENV['TEMP'] );
43 $temp_dir = realpath(dirname($temp_file));
/PHP-7.4/ext/opcache/
H A DZendAccelerator.c1289 zend_string *realpath; in zend_accel_invalidate() local
1296 realpath = accelerator_orig_zend_resolve_path(filename, filename_len); in zend_accel_invalidate()
1298 if (!realpath) { in zend_accel_invalidate()
1303 zend_file_cache_invalidate(realpath); in zend_accel_invalidate()
1306 persistent_script = zend_accel_hash_find(&ZCSG(hash), realpath); in zend_accel_invalidate()
1309 zend_stream_init_filename(&file_handle, ZSTR_VAL(realpath)); in zend_accel_invalidate()
1310 file_handle.opened_path = realpath; in zend_accel_invalidate()
1335 zend_string_release_ex(realpath, 0); in zend_accel_invalidate()
/PHP-7.4/ext/opcache/tests/
H A Drevalidate_path_01.phpt33 $d1 = realpath($dir1);
48 $d2 = realpath($dir2);
/PHP-7.4/ext/pdo_mysql/tests/
H A Dconfig.inc37 return realpath( $_ENV['TMP'] );
39 return realpath( $_ENV['TMPDIR'] );
41 return realpath( $_ENV['TEMP'] );
45 $temp_dir = realpath(dirname($temp_file));
H A Dmysql_pdo_test.inc125 return realpath( $_ENV['TMP'] );
127 return realpath( $_ENV['TMPDIR'] );
129 return realpath( $_ENV['TEMP'] );
133 $temp_dir = realpath(dirname($temp_file));
/PHP-7.4/ext/pdo_odbc/tests/
H A Dcommon.phpt49 $path = realpath(__DIR__) . '\pdo_odbc.mdb';
/PHP-7.4/ext/phar/
H A Dphar.c1765 char *realpath; in phar_analyze_path() local
1770 phar_unixify_path_separators(realpath, strlen(realpath)); in phar_analyze_path()
1772 if (zend_hash_str_exists(&(PHAR_G(phar_fname_map)), realpath, strlen(realpath))) { in phar_analyze_path()
1773 efree(realpath); in phar_analyze_path()
1778 if (PHAR_G(manifest_cached) && zend_hash_str_exists(&cached_phars, realpath, strlen(realpath))) { in phar_analyze_path()
1779 efree(realpath); in phar_analyze_path()
1783 efree(realpath); in phar_analyze_path()
1820 phar_unixify_path_separators(realpath, strlen(realpath)); in phar_analyze_path()
1832 efree(realpath); in phar_analyze_path()
1838 efree(realpath); in phar_analyze_path()
[all …]
H A Dshortarc.php74 $a = realpath(Extract_Phar::$temp . DIRECTORY_SEPARATOR . $pt);
168 $temp = realpath($temp);
203 return realpath('/temp');
210 return realpath('/tmp');
/PHP-7.4/ext/phar/phar/
H A Dclicommand.inc183 $f = realpath($arg);
205 $f = realpath($d);
/PHP-7.4/ext/phar/tests/cache_list/files/
H A Dnophar.phar74 $a = realpath(Extract_Phar::$temp . DIRECTORY_SEPARATOR . $pt);
168 $temp = realpath($temp);
203 return realpath('/temp');
210 return realpath('/tmp');

Completed in 69 milliseconds

1234