Lines Matching refs:resolved
290 PW32IO wchar_t *php_win32_ioutil_realpath_w(const wchar_t *path, wchar_t *resolved);
291 PW32IO wchar_t *php_win32_ioutil_realpath_w_ex0(const wchar_t *path, wchar_t *resolved, PBY_HANDLE_…
650 PW32IO char *realpath(const char *path, char *resolved);
652 __forceinline static char *php_win32_ioutil_realpath_ex0(const char *path, char *resolved, PBY_HAND… in php_win32_ioutil_realpath_ex0() argument
679 if (NULL == resolved) { in php_win32_ioutil_realpath_ex0()
681 resolved = (char *) malloc(reta_len + 1); in php_win32_ioutil_realpath_ex0()
682 if (!resolved) { in php_win32_ioutil_realpath_ex0()
689 memmove(resolved, reta, reta_len+1); in php_win32_ioutil_realpath_ex0()
694 return resolved; in php_win32_ioutil_realpath_ex0()
697 __forceinline static char *php_win32_ioutil_realpath(const char *path, char *resolved) in php_win32_ioutil_realpath() argument
699 return php_win32_ioutil_realpath_ex0(path, resolved, NULL); in php_win32_ioutil_realpath()