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/
H A Dshim_common.cpp182 void PlatformShim::reset() { redirection_map.clear(); }
184 bool PlatformShim::is_fake_path(fs::path const& path) { return redirection_map.count(path.str()) > 0; }
185 fs::path const& PlatformShim::get_real_path_from_fake_path(fs::path const& path) { return redirection_map.at(path.str()); }
186 void PlatformShim::redirect_path(fs::path const& path, fs::path const& new_path) { redirection_map[path.str()] = new_path; }
187 void PlatformShim::remove_redirect(fs::path const& path) { redirection_map.erase(path.str()); }
H A Dshim.h211 std::unordered_map<std::string, fs::path> redirection_map; member
H A Dunix_shim.cpp178 real_path = platform_shim.redirection_map.at(it->folder_path).str(); in READDIR_FUNC_NAME()

Completed in 3 milliseconds