Lines Matching refs:str
113 hkey_local_machine_settings.emplace_back(path.str());
115 hkey_local_machine_implicit_layers.emplace_back(path.str());
117 hkey_local_machine_explicit_layers.emplace_back(path.str());
119 hkey_local_machine_drivers.emplace_back(path.str());
125 hkey_current_user_settings.emplace_back(path.str());
127 hkey_current_user_implicit_layers.emplace_back(path.str());
129 hkey_current_user_explicit_layers.emplace_back(path.str());
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()); }
189 bool PlatformShim::is_known_path(fs::path const& path) { return known_path_set.count(path.str()) > 0; }
190 void PlatformShim::add_known_path(fs::path const& path) { known_path_set.insert(path.str()); }
191 void PlatformShim::remove_known_path(fs::path const& path) { known_path_set.erase(path.str()); }
210 paths.push_back((home / ".config").str());
211 paths.push_back((home / ".local/share").str());
251 dlopen_redirection_map[filename.str()] = actual_path;
254 bool PlatformShim::is_dlopen_redirect_name(fs::path const& filename) { return dlopen_redirection_map.count(filename.str()) == 1; }