Searched refs:dos_path (Results 1 – 3 of 3) sorted by relevance
/reactos/dll/win32/dbghelp/ |
H A D | path.c | 673 WCHAR *dos_path; in get_dos_file_name() local 683 dos_path = wine_get_dos_file_name(unix_path); in get_dos_file_name() 690 dos_path = heap_alloc((len + 1) * sizeof(WCHAR)); in get_dos_file_name() 691 memcpy(dos_path, filename, (len + 1) * sizeof(WCHAR)); in get_dos_file_name() 693 return dos_path; in get_dos_file_name() 786 WCHAR *dos_path; in search_unix_path() local 805 if ((dos_path = wine_get_dos_file_name(buf))) in search_unix_path() 807 …HANDLE file = CreateFileW(dos_path, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRI… in search_unix_path() 810 ret = match(param, file, dos_path); in search_unix_path() 812 if (ret) TRACE("found %s\n", debugstr_w(dos_path)); in search_unix_path() [all …]
|
H A D | elf_module.c | 410 WCHAR *dos_path; in elf_map_file() local 422 if (!(dos_path = get_dos_file_name(emfd->u.file.filename))) return FALSE; in elf_map_file() 423 …fmap->u.elf.handle = CreateFileW(dos_path, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, … in elf_map_file() 424 heap_free(dos_path); in elf_map_file()
|
/reactos/modules/rostests/winetests/kernel32/ |
H A D | file.c | 4638 strcpy(dos_path, dos_prefix); in test_GetFinalPathNameByHandleA() 4639 strcat(dos_path, long_path); in test_GetFinalPathNameByHandleA() 4658 ok(count == strlen(dos_path), "Expected length %u, got %u\n", lstrlenA(dos_path), count); in test_GetFinalPathNameByHandleA() 4662 ok(count == strlen(dos_path), "Expected length %u, got %u\n", lstrlenA(dos_path), count); in test_GetFinalPathNameByHandleA() 4667 ok(count == strlen(dos_path), "Expected length %u, got %u\n", (DWORD)strlen(dos_path), count); in test_GetFinalPathNameByHandleA() 4668 ok(lstrcmpiA(dos_path, result_path) == 0, "Expected %s, got %s\n", dos_path, result_path); in test_GetFinalPathNameByHandleA() 4673 ok(count == strlen(dos_path), "Expected length %u, got %u\n", (DWORD)strlen(dos_path), count); in test_GetFinalPathNameByHandleA() 4678 ok(count == strlen(dos_path), "Expected length %u, got %u\n", (DWORD)strlen(dos_path), count); in test_GetFinalPathNameByHandleA() 4683 ok(count == strlen(dos_path), "Expected length %u, got %u\n", (DWORD)strlen(dos_path), count); in test_GetFinalPathNameByHandleA() 4762 ok(count == lstrlenW(dos_path), "Expected length %u, got %u\n", lstrlenW(dos_path), count); in test_GetFinalPathNameByHandleW() [all …]
|