/aosp12/system/update_engine/payload_generator/ |
H A D | payload_generation_config.cc | 123 if (!store.GetBoolean("RUN_POSTINSTALL_" + part.name, &run_postinstall) || in LoadPostInstallConfig() 131 store.GetBoolean("POSTINSTALL_OPTIONAL_" + part.name, in LoadPostInstallConfig() 178 store.GetBoolean("virtual_ab", &snapshot_enabled); in LoadDynamicPartitionMetadata() 181 if (store.GetBoolean("virtual_ab_compression", &vabc_enabled) && in LoadDynamicPartitionMetadata()
|
/aosp12/system/update_engine/update_manager/ |
H A D | evaluation_context_unittest.cc | 60 bool GetBoolean(bool* value) { in GetBoolean() function 266 Bind(&GetBoolean, &value)); in TEST_F() 283 Bind(&GetBoolean, &value)); in TEST_F() 327 Bind(&GetBoolean, &done)); in TEST_F() 358 Bind(&GetBoolean, &value)); in TEST_F()
|
H A D | real_updater_provider.cc | 320 if (prefs->Exists(key_) && !prefs->GetBoolean(key_, &result)) in OnPrefSet()
|
/aosp12/system/update_engine/common/ |
H A 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()
|
H A D | mock_prefs.h | 38 MOCK_CONST_METHOD2(GetBoolean, bool(const std::string& key, bool* value));
|
H A D | prefs_interface.h | 69 virtual bool GetBoolean(const std::string& key, bool* value) const = 0;
|
H A D | fake_prefs.h | 47 bool GetBoolean(const std::string& key, bool* value) const override;
|
H A D | prefs.h | 73 bool GetBoolean(const std::string& key, bool* value) const override;
|
H A D | fake_prefs.cc | 84 bool FakePrefs::GetBoolean(const string& key, bool* value) const { in GetBoolean() function in chromeos_update_engine::FakePrefs
|
H A D | prefs.cc | 82 bool PrefsBase::GetBoolean(const string& key, bool* value) const { in GetBoolean() function in chromeos_update_engine::PrefsBase
|
/aosp12/system/update_engine/cros/ |
H A D | common_service.cc | 266 !prefs->GetBoolean(kPrefsP2PEnabled, &p2p_pref)) { in GetP2PUpdatePermission() 351 if (!prefs->GetBoolean(kPrefsUpdateOverCellularPermission, &is_allowed)) { in GetUpdateOverCellularPermission()
|
H A D | image_properties_chromeos.cc | 134 if (!lsb_release.GetBoolean(kLsbReleaseIsPowerwashAllowedKey, in LoadMutableImageProperties()
|
H A D | hardware_chromeos.cc | 303 if (!store.GetBoolean(kConfigOptsIsOOBEEnabled, &is_oobe_enabled_)) in LoadConfig()
|
H A D | payload_state.cc | 716 if (!prefs_->GetBoolean(kPrefsAttemptInProgress, &attempt_in_progress)) in ReportAndClearPersistedAttemptMetrics() 1117 powerwash_safe_prefs_->GetBoolean(kPrefsRollbackHappened, &rollback_happened); in LoadRollbackHappened()
|
H A D | payload_state_unittest.cc | 997 EXPECT_CALL(*mock_powerwash_safe_prefs, GetBoolean(kPrefsRollbackHappened, _)) in TEST_F() 1162 EXPECT_CALL(*prefs, GetBoolean(_, _)).Times(0); in TEST_F() 1163 EXPECT_CALL(*prefs, GetBoolean(kPrefsAttemptInProgress, _)); in TEST_F()
|
/aosp12/art/dexlayout/ |
H A D | dex_verify.cc | 699 if (orig->GetBoolean() != output->GetBoolean()) { in VerifyEncodedValue() 703 orig->GetBoolean(), in VerifyEncodedValue() 704 output->GetBoolean()); in VerifyEncodedValue()
|
/aosp12/art/runtime/ |
H A D | transaction_test.cc | 187 ASSERT_EQ(booleanField->GetBoolean(h_klass.Get()), false); in TEST_F() 252 EXPECT_EQ(booleanField->GetBoolean(h_klass.Get()), false); in TEST_F() 287 ASSERT_EQ(booleanField->GetBoolean(h_instance.Get()), false); in TEST_F() 352 EXPECT_EQ(booleanField->GetBoolean(h_instance.Get()), false); in TEST_F()
|
H A D | common_dex_operations.h | 125 result->SetZ(field->GetBoolean(obj)); in DoFieldGetCommon()
|
H A D | art_field.h | 112 uint8_t GetBoolean(ObjPtr<mirror::Object> object) REQUIRES_SHARED(Locks::mutator_lock_);
|
H A D | reflection.cc | 296 DO_FIRST_ARG("Ljava/lang/Boolean;", GetBoolean, Append) in BuildArgArrayFromObjectArray() 958 boxed_value.SetZ(primitive_field->GetBoolean(o)); in UnboxPrimitive()
|
H A D | art_field-inl.h | 151 inline uint8_t ArtField::GetBoolean(ObjPtr<mirror::Object> object) { in GetBoolean() function
|
/aosp12/art/openjdkjvmti/ |
H A D | ti_threadgroup.cc | 152 info_ptr->is_daemon = daemon_field->GetBoolean(obj.Get()) == 0 ? JNI_FALSE : JNI_TRUE; in GetThreadGroupInfo()
|
H A D | ti_thread.cc | 354 info_ptr->is_daemon = f->GetBoolean(peer) == 0 ? JNI_FALSE : JNI_TRUE; in GetThreadInfo() 622 bool started = started_field->GetBoolean(peer.Get()) != 0; in GetThreadState()
|
/aosp12/art/runtime/hprof/ |
H A D | hprof.cc | 1348 __ AddU1(field.GetBoolean(klass)); in DumpHeapClass() 1498 __ AddU1(f->GetBoolean(obj)); in DumpHeapInstanceObject()
|
/aosp12/system/update_engine/aosp/ |
H A D | update_attempter_android.cc | 259 if (prefs_->GetBoolean(kPrefsVerityWritten, &verity_written) && in ApplyPayload()
|