Home
last modified time | relevance | path

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

/system/update_engine/
Dupdate_attempter.h62 using UpdateAttemptFlags = update_engine::UpdateAttemptFlags; variable
119 void SetUpdateAttemptFlags(UpdateAttemptFlags flags) { in SetUpdateAttemptFlags()
126 virtual UpdateAttemptFlags GetCurrentUpdateAttemptFlags() const { in GetCurrentUpdateAttemptFlags()
137 UpdateAttemptFlags flags);
466 UpdateAttemptFlags update_attempt_flags_ = UpdateAttemptFlags::kNone;
469 UpdateAttemptFlags current_update_attempt_flags_ = UpdateAttemptFlags::kNone;
Dcommon_service_unittest.cc36 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()
Dmock_update_attempter.h48 MOCK_CONST_METHOD0(GetCurrentUpdateAttemptFlags, UpdateAttemptFlags(void));
53 UpdateAttemptFlags flags));
Dcommon_service.cc45 using update_engine::UpdateAttemptFlags;
80 auto flags = static_cast<UpdateAttemptFlags>(in_flags_as_int); in SetUpdateAttemptFlags()
84 << ((flags & UpdateAttemptFlags::kFlagRestrictDownload) ? "yes" in SetUpdateAttemptFlags()
95 auto flags = static_cast<UpdateAttemptFlags>(in_flags_as_int); in AttemptUpdate()
96 bool interactive = !(flags & UpdateAttemptFlags::kFlagNonInteractive); in AttemptUpdate()
97 bool restrict_downloads = (flags & UpdateAttemptFlags::kFlagRestrictDownload); in AttemptUpdate()
Dupdate_attempter_unittest.cc76 using update_engine::UpdateAttemptFlags;
1185 attempter_.CheckForUpdate("", "autest", UpdateAttemptFlags::kNone); in TEST_F()
1193 attempter_.CheckForUpdate("", "autest", UpdateAttemptFlags::kNone); in TEST_F()
1200 attempter_.CheckForUpdate("", "autest-scheduled", UpdateAttemptFlags::kNone); in TEST_F()
1236 attempter_.CheckForUpdate("", "", UpdateAttemptFlags::kNone); in TEST_F()
1325 attempter_.SetUpdateAttemptFlags(UpdateAttemptFlags::kFlagRestrictDownload); in TEST_F()
1330 EXPECT_EQ(UpdateAttemptFlags::kFlagRestrictDownload, in TEST_F()
1349 attempter_.SetUpdateAttemptFlags(UpdateAttemptFlags::kFlagRestrictDownload); in TEST_F()
1351 attempter_.CheckForUpdate("", "", UpdateAttemptFlags::kNone); in TEST_F()
1352 EXPECT_EQ(UpdateAttemptFlags::kNone, in TEST_F()
[all …]
Ddbus_service.cc61 interactive ? 0 : update_engine::UpdateAttemptFlags::kFlagNonInteractive, in AttemptUpdateWithFlags()
Dupdate_attempter.cc82 using update_engine::UpdateAttemptFlags;
792 UpdateAttemptFlags flags) { in CheckForUpdate()
795 bool interactive = !(flags & UpdateAttemptFlags::kFlagNonInteractive); in CheckForUpdate()
995 current_update_attempt_flags_ = UpdateAttemptFlags::kNone; in ProcessingDone()
/system/update_engine/client_library/include/update_engine/
Dupdate_status.h48 enum UpdateAttemptFlags : int32_t { enum
58 DECLARE_FLAGS_ENUM(UpdateAttemptFlags);
/system/update_engine/client_library/
Dclient_binder.cc36 using update_engine::UpdateAttemptFlags;
57 at_user_request ? 0 : UpdateAttemptFlags::kFlagNonInteractive, in AttemptUpdate()
Dclient_dbus.cc56 : update_engine::UpdateAttemptFlags::kFlagNonInteractive, in AttemptUpdate()
/system/update_engine/update_manager/
Dreal_updater_provider_unittest.cc45 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.cc41 using update_engine::UpdateAttemptFlags;
426 UpdateAttemptFlags attempt_flags = in GetValue()
431 if (attempt_flags & UpdateAttemptFlags::kFlagRestrictDownload) { in GetValue()