Lines Matching refs:pathname
108 char * tsrm_win32_get_path_sid_key(const char *pathname, size_t pathname_len, size_t *key_len) in tsrm_win32_get_path_sid_key() argument
117 return pathname; in tsrm_win32_get_path_sid_key()
136 memcpy(bucket_key + ptc_sid_len, pathname, pathname_len + 1); in tsrm_win32_get_path_sid_key()
193 TSRM_API int tsrm_win32_access(const char *pathname, int mode) in tsrm_win32_access() argument
210 if(!IS_ABSOLUTE_PATH(pathname, strlen(pathname)+1)) { in tsrm_win32_access()
211 if(tsrm_realpath(pathname, real_path) == NULL) { in tsrm_win32_access()
215 pathname = real_path; in tsrm_win32_access()
218 PHP_WIN32_IOUTIL_INIT_W(pathname) in tsrm_win32_access()
277 bucket = realpath_cache_lookup(pathname, strlen(pathname), t); in tsrm_win32_access()
281 if(tsrm_realpath(pathname, real_path) != NULL) { in tsrm_win32_access()
282 pathname = real_path; in tsrm_win32_access()
283 bucket = realpath_cache_lookup(pathname, strlen(pathname), t); in tsrm_win32_access()
284 PHP_WIN32_IOUTIL_REINIT_W(pathname); in tsrm_win32_access()