HomeSort by: relevance | last modified time | path
    Searched defs:wpath (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/arch/hpcmips/stand/libsa/
winfs.c 55 TCHAR *wpath = (TCHAR*)path; local
63 win_printf(TEXT("open(%s)\n"), wpath);
64 fsdata->hDevice = CreateFile(wpath, GENERIC_READ, 0, NULL,
67 win_printf(TEXT("can't open %s.\n"), wpath);
  /src/external/bsd/libarchive/dist/cpio/
cpio_windows.c 137 wchar_t *wpath; local
152 wpath = permissive_name(path);
153 if (wpath == NULL)
163 handle = CreateFile2(wpath, dwDesiredAccess, dwShareMode,
166 handle = CreateFileW(wpath, dwDesiredAccess, dwShareMode,
170 free(wpath);
  /src/external/bsd/libarchive/dist/libarchive/
archive_windows.c 233 wchar_t *wpath; local
248 wpath = __la_win_permissive_name(path);
249 if (wpath == NULL)
259 handle = CreateFile2(wpath, dwDesiredAccess, dwShareMode,
262 handle = CreateFileW(wpath, dwDesiredAccess, dwShareMode,
266 free(wpath);
archive_read_disk_windows.c 1354 struct archive_wstring wpath; local
1363 archive_string_init(&wpath);
1364 if (archive_wstring_append_from_mbs(&wpath, pathname,
1375 ret = _archive_read_disk_open_w(_a, wpath.s);
1377 archive_wstring_free(&wpath);

Completed in 28 milliseconds