Searched refs:wide_path (Results 1 – 3 of 3) sorted by relevance
1350 WCHAR *wstr, *long_path, wide_path[MAX_PATH+1]; local1357 if (wcslen(wstr) < (size_t)countof(wide_path)) {1358 wcscpy(wide_path, wstr);1359 long_path = my_longpathW(wide_path);1373 WCHAR *wide_path; local1378 wide_path = sv_to_wstr(aTHX_ ST(0));1379 ST(0) = wstr_to_ansipath(aTHX_ wide_path);1380 Safefree(wide_path);
5154 WCHAR *wide_path; in ansify_path() local5159 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()
228 SmallVector<wchar_t, 128> wide_path;229 if (std::error_code ec = widenPath(path, wide_path))232 if (!::SetCurrentDirectoryW(wide_path.begin()))