Home
last modified time | relevance | path

Searched refs:UpdateAttemptFlags (Results 1 – 11 of 11) sorted by relevance

/system/update_engine/cros/
Dupdate_attempter.h65 using UpdateAttemptFlags = update_engine::UpdateAttemptFlags; variable
111 void SetUpdateAttemptFlags(UpdateAttemptFlags flags) { in SetUpdateAttemptFlags()
118 virtual UpdateAttemptFlags GetCurrentUpdateAttemptFlags() const { in GetCurrentUpdateAttemptFlags()
129 UpdateAttemptFlags flags);
508 UpdateAttemptFlags update_attempt_flags_ = UpdateAttemptFlags::kNone;
511 UpdateAttemptFlags current_update_attempt_flags_ = UpdateAttemptFlags::kNone;
Dcommon_service_unittest.cc35 using update_engine::UpdateAttemptFlags;
58 CheckForUpdate("app_ver", "url", UpdateAttemptFlags::kFlagNonInteractive)) in TEST_F()
67 UpdateAttemptFlags::kFlagNonInteractive, in TEST_F()
75 CheckForUpdate("app_ver", "url", UpdateAttemptFlags::kNone)) in TEST_F()
79 &error_, "app_ver", "url", UpdateAttemptFlags::kNone, &result)); in TEST_F()
Dmock_update_attempter.h44 MOCK_CONST_METHOD0(GetCurrentUpdateAttemptFlags, UpdateAttemptFlags(void));
49 UpdateAttemptFlags flags));
Dcommon_service.cc45 using update_engine::UpdateAttemptFlags;
75 auto flags = static_cast<UpdateAttemptFlags>(in_flags_as_int); in SetUpdateAttemptFlags()
79 << ((flags & UpdateAttemptFlags::kFlagRestrictDownload) ? "yes" in SetUpdateAttemptFlags()
90 auto flags = static_cast<UpdateAttemptFlags>(in_flags_as_int); in AttemptUpdate()
91 bool interactive = !(flags & UpdateAttemptFlags::kFlagNonInteractive); in AttemptUpdate()
92 bool restrict_downloads = (flags & UpdateAttemptFlags::kFlagRestrictDownload); in AttemptUpdate()
Dupdate_attempter_unittest.cc89 using update_engine::UpdateAttemptFlags;
115 UpdateAttemptFlags flags = UpdateAttemptFlags::kNone;
1498 cfu_params_.flags = UpdateAttemptFlags::kFlagNonInteractive; in TEST_F()
1512 cfu_params_.flags = UpdateAttemptFlags::kFlagNonInteractive; in TEST_F()
1529 cfu_params_.flags = UpdateAttemptFlags::kFlagNonInteractive; in TEST_F()
1542 cfu_params_.flags = UpdateAttemptFlags::kFlagNonInteractive; in TEST_F()
1615 attempter_.CheckForUpdate("", "", UpdateAttemptFlags::kNone); in TEST_F()
1734 attempter_.SetUpdateAttemptFlags(UpdateAttemptFlags::kFlagRestrictDownload); in TEST_F()
1739 EXPECT_EQ(UpdateAttemptFlags::kFlagRestrictDownload, in TEST_F()
1758 attempter_.SetUpdateAttemptFlags(UpdateAttemptFlags::kFlagRestrictDownload); in TEST_F()
[all …]
Ddbus_service.cc80 interactive ? 0 : update_engine::UpdateAttemptFlags::kFlagNonInteractive, in AttemptUpdateWithFlags()
Dupdate_attempter.cc91 using update_engine::UpdateAttemptFlags;
912 UpdateAttemptFlags flags) { in CheckForUpdate()
920 bool interactive = !(flags & UpdateAttemptFlags::kFlagNonInteractive); in CheckForUpdate()
1393 current_update_attempt_flags_ = UpdateAttemptFlags::kNone; in ResetInteractivityFlags()
/system/update_engine/client_library/include/update_engine/
Dupdate_status.h62 enum UpdateAttemptFlags : int32_t { enum
72 DECLARE_FLAGS_ENUM(UpdateAttemptFlags);
/system/update_engine/update_manager/
Dreal_updater_provider_unittest.cc42 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()
Dreal_updater_provider.cc42 using update_engine::UpdateAttemptFlags;
418 UpdateAttemptFlags attempt_flags = in GetValue()
423 if (attempt_flags & UpdateAttemptFlags::kFlagRestrictDownload) { in GetValue()
/system/update_engine/client_library/
Dclient_dbus.cc84 : update_engine::UpdateAttemptFlags::kFlagNonInteractive, in AttemptUpdate()