Home
last modified time | relevance | path

Searched refs:pathw (Results 1 – 4 of 4) sorted by relevance

/third_party/libuv/src/win/
Dfs-event.c162 WCHAR* dir = NULL, *dir_to_watch, *pathw = NULL; in uv_fs_event_start() local
183 pathw = (WCHAR*)uv__malloc(name_size); in uv_fs_event_start()
184 if (!pathw) { in uv_fs_event_start()
192 pathw, in uv_fs_event_start()
198 attr = GetFileAttributesW(pathw); in uv_fs_event_start()
210 size = GetLongPathNameW(pathw, NULL, 0); in uv_fs_event_start()
218 size = GetLongPathNameW(pathw, long_path, size); in uv_fs_event_start()
227 uv__free(pathw); in uv_fs_event_start()
228 pathw = long_path; in uv_fs_event_start()
232 dir_to_watch = pathw; in uv_fs_event_start()
[all …]
Dfs.c189 req->file.pathw = NULL; in fs__capture_path()
210 req->file.pathw = (WCHAR*) pos; in fs__capture_path()
213 req->file.pathw = NULL; in fs__capture_path()
612 file = CreateFileW(req->file.pathw, in fs__open()
1131 int result = _wrmdir(req->file.pathw); in fs__rmdir()
1140 const WCHAR* pathw = req->file.pathw; in fs__unlink() local
1147 handle = CreateFileW(pathw, in fs__unlink()
1228 if (CreateDirectoryW(req->file.pathw, NULL)) { in fs__mkdir()
1253 len = wcslen(req->file.pathw); in fs__mktemp()
1254 ep = req->file.pathw + len; in fs__mktemp()
[all …]
/third_party/libuv/include/uv/
Dwin.h614 WCHAR* pathw; \
/third_party/libuv/test/
Dtest-fs.c3632 ASSERT_NULL(write_req.file.pathw); in TEST_IMPL()