Home
last modified time | relevance | path

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

/system/update_engine/common/
Dprefs.h47 virtual bool GetSubKeys(const std::string& ns,
78 bool GetSubKeys(const std::string& ns,
122 bool GetSubKeys(const std::string& ns,
162 bool GetSubKeys(const std::string& ns,
Dprefs.cc115 bool PrefsBase::GetSubKeys(const string& ns, vector<string>* keys) const { in GetSubKeys() function in chromeos_update_engine::PrefsBase
116 return storage_->GetSubKeys(ns, keys); in GetSubKeys()
157 bool Prefs::FileStorage::GetSubKeys(const string& ns, in GetSubKeys() function in chromeos_update_engine::Prefs::FileStorage
223 bool MemoryPrefs::MemoryStorage::GetSubKeys(const string& ns, in GetSubKeys() function in chromeos_update_engine::MemoryPrefs::MemoryStorage
Dmock_prefs.h45 MOCK_CONST_METHOD2(GetSubKeys,
Dprefs_interface.h87 virtual bool GetSubKeys(const std::string& ns,
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()
Dfake_prefs.h52 bool GetSubKeys(const std::string& ns,
Dfake_prefs.cc109 bool FakePrefs::GetSubKeys(const string& ns, vector<string>* keys) const { in GetSubKeys() function in chromeos_update_engine::FakePrefs
/system/update_engine/
Dexcluder_chromeos.cc55 if (!prefs_->GetSubKeys(kExclusionPrefsSubDir, &keys)) in Reset()