Searched refs:UpdateAttemptFlags (Results 1 – 11 of 11) sorted by relevance
/system/update_engine/ |
D | update_attempter.h | 65 using UpdateAttemptFlags = update_engine::UpdateAttemptFlags; variable 124 void SetUpdateAttemptFlags(UpdateAttemptFlags flags) { in SetUpdateAttemptFlags() 131 virtual UpdateAttemptFlags GetCurrentUpdateAttemptFlags() const { in GetCurrentUpdateAttemptFlags() 142 UpdateAttemptFlags flags); 520 UpdateAttemptFlags update_attempt_flags_ = UpdateAttemptFlags::kNone; 523 UpdateAttemptFlags current_update_attempt_flags_ = UpdateAttemptFlags::kNone;
|
D | common_service_unittest.cc | 36 using update_engine::UpdateAttemptFlags; 62 CheckForUpdate("app_ver", "url", UpdateAttemptFlags::kFlagNonInteractive)) in TEST_F() 71 UpdateAttemptFlags::kFlagNonInteractive, in TEST_F() 79 CheckForUpdate("app_ver", "url", UpdateAttemptFlags::kNone)) in TEST_F() 83 &error_, "app_ver", "url", UpdateAttemptFlags::kNone, &result)); in TEST_F()
|
D | mock_update_attempter.h | 50 MOCK_CONST_METHOD0(GetCurrentUpdateAttemptFlags, UpdateAttemptFlags(void)); 55 UpdateAttemptFlags flags));
|
D | common_service.cc | 45 using update_engine::UpdateAttemptFlags; 76 auto flags = static_cast<UpdateAttemptFlags>(in_flags_as_int); in SetUpdateAttemptFlags() 80 << ((flags & UpdateAttemptFlags::kFlagRestrictDownload) ? "yes" in SetUpdateAttemptFlags() 91 auto flags = static_cast<UpdateAttemptFlags>(in_flags_as_int); in AttemptUpdate() 92 bool interactive = !(flags & UpdateAttemptFlags::kFlagNonInteractive); in AttemptUpdate() 93 bool restrict_downloads = (flags & UpdateAttemptFlags::kFlagRestrictDownload); in AttemptUpdate()
|
D | update_attempter_unittest.cc | 90 using update_engine::UpdateAttemptFlags; 116 UpdateAttemptFlags flags = UpdateAttemptFlags::kNone; 1573 cfu_params_.flags = UpdateAttemptFlags::kFlagNonInteractive; in TEST_F() 1587 cfu_params_.flags = UpdateAttemptFlags::kFlagNonInteractive; in TEST_F() 1604 cfu_params_.flags = UpdateAttemptFlags::kFlagNonInteractive; in TEST_F() 1617 cfu_params_.flags = UpdateAttemptFlags::kFlagNonInteractive; in TEST_F() 1690 attempter_.CheckForUpdate("", "", UpdateAttemptFlags::kNone); in TEST_F() 1786 attempter_.SetUpdateAttemptFlags(UpdateAttemptFlags::kFlagRestrictDownload); in TEST_F() 1791 EXPECT_EQ(UpdateAttemptFlags::kFlagRestrictDownload, in TEST_F() 1810 attempter_.SetUpdateAttemptFlags(UpdateAttemptFlags::kFlagRestrictDownload); in TEST_F() [all …]
|
D | dbus_service.cc | 80 interactive ? 0 : update_engine::UpdateAttemptFlags::kFlagNonInteractive, in AttemptUpdateWithFlags()
|
D | update_attempter.cc | 91 using update_engine::UpdateAttemptFlags; 949 UpdateAttemptFlags flags) { in CheckForUpdate() 957 bool interactive = !(flags & UpdateAttemptFlags::kFlagNonInteractive); in CheckForUpdate() 1440 current_update_attempt_flags_ = UpdateAttemptFlags::kNone; in ResetInteractivityFlags()
|
/system/update_engine/client_library/include/update_engine/ |
D | update_status.h | 62 enum UpdateAttemptFlags : int32_t { enum 72 DECLARE_FLAGS_ENUM(UpdateAttemptFlags);
|
/system/update_engine/update_manager/ |
D | real_updater_provider_unittest.cc | 45 using update_engine::UpdateAttemptFlags; 435 .WillRepeatedly(Return(UpdateAttemptFlags::kFlagRestrictDownload | in TEST_F() 436 UpdateAttemptFlags::kFlagNonInteractive)); in TEST_F() 444 .WillRepeatedly(Return(UpdateAttemptFlags::kNone)); in TEST_F()
|
D | real_updater_provider.cc | 41 using update_engine::UpdateAttemptFlags; 426 UpdateAttemptFlags attempt_flags = in GetValue() 431 if (attempt_flags & UpdateAttemptFlags::kFlagRestrictDownload) { in GetValue()
|
/system/update_engine/client_library/ |
D | client_dbus.cc | 84 : update_engine::UpdateAttemptFlags::kFlagNonInteractive, in AttemptUpdate()
|