Lines Matching refs:resolved
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
682 return php_win32_ioutil_realpath_ex0(path, resolved, NULL); in php_win32_ioutil_realpath()