Home
last modified time | relevance | path

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

/freebsd/contrib/pkgconf/tests/
H A Dtest-runner.c772 wchar_t* wide_path = calloc(size, sizeof(wchar_t)); in rmdir_recursive() local
773 assert(wide_path != NULL); in rmdir_recursive()
774 MultiByteToWideChar(CP_ACP, 0, pkgconf_buffer_str(&child), -1, wide_path, size); in rmdir_recursive()
776 DWORD attrs = GetFileAttributesW(wide_path); in rmdir_recursive()
778 free(wide_path); in rmdir_recursive()
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h2109 std::wstring wide_path = converter.from_bytes(path);
2111 return _wfopen(wide_path.c_str(), wide_mode.c_str());
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc229 SmallVector<wchar_t, 128> wide_path;
230 if (std::error_code ec = widenPath(path, wide_path))
233 if (!::SetCurrentDirectoryW(wide_path.begin()))