Home
last modified time | relevance | path

Searched refs:GetBoolean (Results 1 – 9 of 9) sorted by relevance

/system/update_engine/payload_generator/
Dpayload_generation_config.cc141 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/
Dmock_prefs.h37 MOCK_CONST_METHOD2(GetBoolean, bool(std::string_view key, bool* value));
Dprefs_interface.h69 virtual bool GetBoolean(std::string_view key, bool* value) const = 0;
Dfake_prefs.h48 bool GetBoolean(std::string_view key, bool* value) const override;
Dprefs_unittest.cc346 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()
Dprefs.h74 bool GetBoolean(std::string_view key, bool* value) const override;
Dfake_prefs.cc84 bool FakePrefs::GetBoolean(std::string_view key, bool* value) const { in GetBoolean() function in chromeos_update_engine::FakePrefs
Dprefs.cc82 bool PrefsBase::GetBoolean(std::string_view key, bool* value) const { in GetBoolean() function in chromeos_update_engine::PrefsBase
/system/update_engine/aosp/
Dupdate_attempter_android.cc300 if (prefs_->GetBoolean(kPrefsVerityWritten, &verity_written) && in ApplyPayload()