Home
last modified time | relevance | path

Searched refs:wide_path (Results 1 – 3 of 3) sorted by relevance

/openbsd/gnu/usr.bin/perl/cpan/Win32/
H A DWin32.xs1350 WCHAR *wstr, *long_path, wide_path[MAX_PATH+1]; local
1357 if (wcslen(wstr) < (size_t)countof(wide_path)) {
1358 wcscpy(wide_path, wstr);
1359 long_path = my_longpathW(wide_path);
1373 WCHAR *wide_path; local
1378 wide_path = sv_to_wstr(aTHX_ ST(0));
1379 ST(0) = wstr_to_ansipath(aTHX_ wide_path);
1380 Safefree(wide_path);
/openbsd/gnu/usr.bin/perl/win32/
H A Dwin32.c5154 WCHAR *wide_path; in ansify_path() local
5159 wide_path = (WCHAR*)win32_malloc(len*sizeof(WCHAR)); in ansify_path()
5160 while (wide_path) { in ansify_path()
5161 size_t newlen = GetEnvironmentVariableW(L"PATH", wide_path, len); in ansify_path()
5163 win32_free(wide_path); in ansify_path()
5169 wide_path = (WCHAR*)win32_realloc(wide_path, len*sizeof(WCHAR)); in ansify_path()
5171 if (!wide_path) in ansify_path()
5175 wide_dir = wide_path; in ansify_path()
5238 win32_free(wide_path); in ansify_path()
/openbsd/gnu/llvm/llvm/lib/Support/Windows/
H A DPath.inc228 SmallVector<wchar_t, 128> wide_path;
229 if (std::error_code ec = widenPath(path, wide_path))
232 if (!::SetCurrentDirectoryW(wide_path.begin()))