Searched refs:resolved (Results 1 – 11 of 11) sorted by relevance
/PHP-8.4/win32/ |
H A D | ioutil.h | 273 PW32IO wchar_t *php_win32_ioutil_realpath_w(const wchar_t *path, wchar_t *resolved); 274 PW32IO wchar_t *php_win32_ioutil_realpath_w_ex0(const wchar_t *path, wchar_t *resolved, PBY_HANDLE_… 633 PW32IO char *realpath(const char *path, char *resolved); 635 __forceinline static char *php_win32_ioutil_realpath_ex0(const char *path, char *resolved, PBY_HAND… in php_win32_ioutil_realpath_ex0() argument 662 if (NULL == resolved) { in php_win32_ioutil_realpath_ex0() 664 resolved = (char *) malloc(reta_len + 1); in php_win32_ioutil_realpath_ex0() 665 if (!resolved) { in php_win32_ioutil_realpath_ex0() 672 memmove(resolved, reta, reta_len+1); in php_win32_ioutil_realpath_ex0() 677 return resolved; in php_win32_ioutil_realpath_ex0() 680 __forceinline static char *php_win32_ioutil_realpath(const char *path, char *resolved) in php_win32_ioutil_realpath() argument [all …]
|
H A D | ioutil.c | 731 static size_t php_win32_ioutil_realpath_h(HANDLE *h, wchar_t **resolved) in php_win32_ioutil_realpath_h() argument 746 if (NULL == *resolved) { in php_win32_ioutil_realpath_h() 748 *resolved = (wchar_t *) malloc((ret_len + 1)*sizeof(wchar_t)); in php_win32_ioutil_realpath_h() 749 if (!*resolved) { in php_win32_ioutil_realpath_h() 765 memmove(*resolved, ret_real, (ret_real_len+1)*sizeof(wchar_t)); in php_win32_ioutil_realpath_h() 770 PW32IO wchar_t *php_win32_ioutil_realpath_w(const wchar_t *path, wchar_t *resolved) in php_win32_ioutil_realpath_w() argument 772 return php_win32_ioutil_realpath_w_ex0(path, resolved, NULL); in php_win32_ioutil_realpath_w() 795 ret_len = php_win32_ioutil_realpath_h(h, &resolved); in php_win32_ioutil_realpath_w_ex0() 812 return resolved; in php_win32_ioutil_realpath_w_ex0() 815 PW32IO char *realpath(const char *path, char *resolved) in realpath() argument [all …]
|
/PHP-8.4/ext/opcache/tests/ |
H A D | preload_010.phpt | 2 Initializer of overwritten property should be resolved against the correct class
|
H A D | revalidate_path_01.phpt | 2 revalidate_path 01: OPCache must cache only resolved real paths when revalidate_path is set
|
/PHP-8.4/ext/reflection/tests/ |
H A D | bug79820.phpt | 2 Bug #79820: Use after free when type duplicated into ReflectionProperty gets resolved
|
/PHP-8.4/Zend/tests/ |
H A D | bug70957.phpt | 2 Bug #70957 (self::class cannot be resolved with reflection for abstract class)
|
H A D | bug78868.phpt | 14 static $foo = B::foo; //not resolved on include()
|
/PHP-8.4/ext/reflection/tests/types/ |
H A D | ReflectionType_001.phpt | 97 echo "*** resolved property types\n"; 222 *** resolved property types
|
/PHP-8.4/ext/opcache/ |
H A D | ZendAccelerator.c | 3788 bool resolved = true; local 3795 resolved = ok = false; 3799 if (resolved) { 3805 bool resolved = true; local 3811 resolved = ok = false; 3817 if (resolved) {
|
/PHP-8.4/build/ |
H A D | ltmain.sh | 3633 $echo "*** its dynamic dependency list that programs get resolved with at runtime." 3673 $echo "*** as a dynamic dependency that programs can get resolved with at runtime."
|
/PHP-8.4/Zend/ |
H A D | zend_compile.c | 1418 zend_string *resolved = resolve_class_name(name, scope); in add_intersection_type() local 1419 intersection_str = add_type_string(intersection_str, resolved, /* is_intersection */ true); in add_intersection_type() 1420 zend_string_release(resolved); in add_intersection_type() 1453 zend_string *resolved = resolve_class_name(name, scope); in zend_type_to_string_resolved() local 1454 str = add_type_string(str, resolved, /* is_intersection */ false); in zend_type_to_string_resolved() 1455 zend_string_release(resolved); in zend_type_to_string_resolved()
|
Completed in 73 milliseconds