/system/update_engine/common/ |
D | prefs_unittest.cc | 205 EXPECT_TRUE(prefs_.GetBoolean(kKey, &value)); in TEST_F() 213 EXPECT_TRUE(prefs_.GetBoolean(kKey, &value)); in TEST_F() 221 EXPECT_FALSE(prefs_.GetBoolean(kKey, &value)); in TEST_F() 228 EXPECT_FALSE(prefs_.GetBoolean(kKey, &value)); in TEST_F() 233 EXPECT_FALSE(prefs_.GetBoolean("random-key", &value)); in TEST_F()
|
D | mock_prefs.h | 38 MOCK_CONST_METHOD2(GetBoolean, bool(const std::string& key, bool* value));
|
D | prefs_interface.h | 68 virtual bool GetBoolean(const std::string& key, bool* value) const = 0;
|
D | prefs.h | 49 bool GetBoolean(const std::string& key, bool* value) const override;
|
D | fake_prefs.h | 46 bool GetBoolean(const std::string& key, bool* value) const override;
|
D | prefs.cc | 79 bool Prefs::GetBoolean(const string& key, bool* value) const { in GetBoolean() function in chromeos_update_engine::Prefs
|
D | fake_prefs.cc | 82 bool FakePrefs::GetBoolean(const string& key, bool* value) const { in GetBoolean() function in chromeos_update_engine::FakePrefs
|
/system/update_engine/update_manager/ |
D | evaluation_context_unittest.cc | 58 bool GetBoolean(bool* value) { in GetBoolean() function 259 Bind(&GetBoolean, &value)); in TEST_F() 276 Bind(&GetBoolean, &value)); in TEST_F() 320 Bind(&GetBoolean, &done)); in TEST_F() 351 Bind(&GetBoolean, &value)); in TEST_F()
|
D | real_config_provider.cc | 56 if (!store.GetBoolean(kConfigOptsIsOOBEEnabled, &is_oobe_enabled)) in Init()
|
D | real_updater_provider.cc | 325 if (prefs_ && prefs_->Exists(key_) && !prefs_->GetBoolean(key_, &result)) in OnPrefSet()
|
/system/weaved/buffet/ |
D | buffet_config.cc | 136 store.GetBoolean(config_keys::kWifiAutoSetupEnabled, in LoadDefaults() 162 store.GetBoolean(config_keys::kLocalDiscoveryEnabled, in LoadDefaults() 164 store.GetBoolean(config_keys::kLocalPairingEnabled, in LoadDefaults()
|
/system/update_engine/ |
D | image_properties_android.cc | 95 if (!prefs->GetBoolean(kPrefsImgPropPowerwashAllowed, in LoadMutableImageProperties()
|
D | image_properties_chromeos.cc | 129 if (!lsb_release.GetBoolean(kLsbReleaseIsPowerwashAllowedKey, in LoadMutableImageProperties()
|
D | connection_manager_unittest.cc | 365 EXPECT_CALL(*prefs, GetBoolean(kPrefsUpdateOverCellularPermission, _)) in TEST_F() 375 EXPECT_CALL(*prefs, GetBoolean(kPrefsUpdateOverCellularPermission, _)) in TEST_F()
|
D | connection_manager.cc | 117 if (!prefs->GetBoolean(kPrefsUpdateOverCellularPermission, in IsUpdateAllowedOver()
|
D | common_service.cc | 210 !prefs->GetBoolean(kPrefsP2PEnabled, &p2p_pref)) { in GetP2PUpdatePermission()
|
D | payload_state_unittest.cc | 1150 EXPECT_CALL(*prefs, GetBoolean(_, _)).Times(0); in TEST() 1151 EXPECT_CALL(*prefs, GetBoolean(kPrefsAttemptInProgress, _)); in TEST()
|
D | payload_state.cc | 655 if (!prefs_->GetBoolean(kPrefsAttemptInProgress, &attempt_in_progress)) in ReportAndClearPersistedAttemptMetrics()
|
/system/webservd/webservd/ |
D | config.cc | 82 if (handler_value->GetBoolean(kUseTLSKey, &use_tls)) in LoadHandlerConfig()
|
/system/update_engine/payload_generator/ |
D | payload_generation_config.cc | 90 if (!store.GetBoolean("RUN_POSTINSTALL_" + part.name, &run_postinstall) || in LoadPostInstallConfig()
|