Lines Matching refs:pathw
163 WCHAR* dir = NULL, *dir_to_watch, *pathw = NULL;
180 last_error = uv__convert_utf8_to_utf16(path, &pathw);
185 attr = GetFileAttributesW(pathw);
197 size = GetLongPathNameW(pathw, NULL, 0);
205 size = GetLongPathNameW(pathw, long_path, size);
214 uv__free(pathw);
215 pathw = long_path;
219 dir_to_watch = pathw;
228 short_path_buffer_len = GetShortPathNameW(pathw, NULL, 0);
236 if (GetShortPathNameW(pathw,
245 if (uv__split_path(pathw, &dir, &handle->filew) != 0) {
256 uv__free(pathw);
257 pathw = NULL;
317 assert(is_path_dir ? pathw != NULL : pathw == NULL);
318 handle->dirw = pathw;
341 uv__free(pathw);