Home
last modified time | relevance | path

Searched refs:GetSubKeys (Results 1 – 8 of 8) sorted by relevance

/system/update_engine/common/
Dprefs.h48 virtual bool GetSubKeys(const std::string& ns,
81 bool GetSubKeys(const std::string& ns,
125 bool GetSubKeys(const std::string& ns,
165 bool GetSubKeys(const std::string& ns,
Dprefs.cc123 success = GetSubKeys(ns, &namespace_keys) && success; in Delete()
135 bool PrefsBase::GetSubKeys(const string& ns, vector<string>* keys) const { in GetSubKeys() function in chromeos_update_engine::PrefsBase
136 return storage_->GetSubKeys(ns, keys); in GetSubKeys()
177 bool Prefs::FileStorage::GetSubKeys(const string& ns, in GetSubKeys() function in chromeos_update_engine::Prefs::FileStorage
247 bool MemoryPrefs::MemoryStorage::GetSubKeys(const string& ns, in GetSubKeys() function in chromeos_update_engine::MemoryPrefs::MemoryStorage
Dmock_prefs.h47 MOCK_CONST_METHOD2(GetSubKeys,
Dprefs_interface.h93 virtual bool GetSubKeys(const std::string& ns,
Dfake_prefs.cc114 success = GetSubKeys(ns, &ns_keys) && success; in Delete()
126 bool FakePrefs::GetSubKeys(const string& ns, vector<string>* keys) const { in GetSubKeys() function in chromeos_update_engine::FakePrefs
Dprefs_unittest.cc79 EXPECT_TRUE(common_prefs_->GetSubKeys("ns1/nsB/", &keys2)); in MultiNamespaceKeyTest()
91 EXPECT_TRUE(common_prefs_->GetSubKeys("ns1/nsB", &keys2corner)); in MultiNamespaceKeyTest()
98 EXPECT_TRUE(common_prefs_->GetSubKeys("ns1/nsA/", &keys1)); in MultiNamespaceKeyTest()
108 EXPECT_TRUE(common_prefs_->GetSubKeys("ns1/", &keys0)); in MultiNamespaceKeyTest()
116 EXPECT_TRUE(common_prefs_->GetSubKeys("ns1", &keys0corner)); in MultiNamespaceKeyTest()
132 EXPECT_TRUE(common_prefs_->GetSubKeys(kDlcPrefsSubDir, &fpKeys)); in MultiNamespaceKeyTest()
Dfake_prefs.h55 bool GetSubKeys(const std::string& ns,
/system/update_engine/cros/
Dexcluder_chromeos.cc55 if (!prefs->GetSubKeys(kExclusionPrefsSubDir, &keys)) in Reset()