Searched refs:GetBoolean (Results 1 – 9 of 9) sorted by relevance
/system/update_engine/payload_generator/ |
D | payload_generation_config.cc | 141 if (!store.GetBoolean("RUN_POSTINSTALL_" + part.name, &run_postinstall) || in LoadPostInstallConfig() 149 store.GetBoolean("POSTINSTALL_OPTIONAL_" + part.name, in LoadPostInstallConfig() 196 store.GetBoolean("virtual_ab", &snapshot_enabled); in LoadDynamicPartitionMetadata() 199 if (store.GetBoolean("virtual_ab_compression", &vabc_enabled) && in LoadDynamicPartitionMetadata()
|
/system/update_engine/common/ |
D | mock_prefs.h | 37 MOCK_CONST_METHOD2(GetBoolean, bool(std::string_view key, bool* value));
|
D | prefs_interface.h | 69 virtual bool GetBoolean(std::string_view key, bool* value) const = 0;
|
D | fake_prefs.h | 48 bool GetBoolean(std::string_view key, bool* value) const override;
|
D | prefs_unittest.cc | 346 EXPECT_TRUE(prefs_.GetBoolean(kKey, &value)); in TEST_F() 354 EXPECT_TRUE(prefs_.GetBoolean(kKey, &value)); in TEST_F() 362 EXPECT_FALSE(prefs_.GetBoolean(kKey, &value)); in TEST_F() 369 EXPECT_FALSE(prefs_.GetBoolean(kKey, &value)); in TEST_F() 374 EXPECT_FALSE(prefs_.GetBoolean("random-key", &value)); in TEST_F()
|
D | prefs.h | 74 bool GetBoolean(std::string_view key, bool* value) const override;
|
D | fake_prefs.cc | 84 bool FakePrefs::GetBoolean(std::string_view key, bool* value) const { in GetBoolean() function in chromeos_update_engine::FakePrefs
|
D | prefs.cc | 82 bool PrefsBase::GetBoolean(std::string_view key, bool* value) const { in GetBoolean() function in chromeos_update_engine::PrefsBase
|
/system/update_engine/aosp/ |
D | update_attempter_android.cc | 300 if (prefs_->GetBoolean(kPrefsVerityWritten, &verity_written) && in ApplyPayload()
|