Home
last modified time | relevance | path

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

/third_party/vulkan-loader/tests/framework/shim/
Dshim_common.cpp161 void PlatformShim::reset() { redirection_map.clear(); }
163 void PlatformShim::redirect_path(fs::path const& path, fs::path const& new_path) { redirection_map[…
164 void PlatformShim::remove_redirect(fs::path const& path) { redirection_map.erase(path.str()); }
165 bool PlatformShim::is_fake_path(fs::path const& path) { return redirection_map.count(path.str()) > …
166 fs::path const& PlatformShim::get_fake_path(fs::path const& path) { return redirection_map.at(path.…
Dshim.h191 std::unordered_map<std::string, fs::path> redirection_map; member
Dunix_shim.cpp135 auto real_path = platform_shim.redirection_map.at(it->folder_path); in READDIR_FUNC_NAME()