Home
last modified time | relevance | path

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

/system/update_engine/cros/
Dcommon_service_unittest.cc99 TEST_F(UpdateEngineServiceTest, SetDlcActiveValue) { in TEST_F() argument
100 EXPECT_CALL(*mock_update_attempter_, SetDlcActiveValue(_, _)) in TEST_F()
103 EXPECT_TRUE(common_service_.SetDlcActiveValue(&error_, true, "dlc0")); in TEST_F()
107 EXPECT_CALL(*mock_update_attempter_, SetDlcActiveValue(_, _)) in TEST_F()
110 EXPECT_FALSE(common_service_.SetDlcActiveValue(&error_, true, "dlc0")); in TEST_F()
Dmock_update_attempter.h55 MOCK_METHOD2(SetDlcActiveValue, bool(bool, const std::string&));
Ddbus_service.cc104 bool DBusUpdateEngineService::SetDlcActiveValue(brillo::ErrorPtr* error, in SetDlcActiveValue() function in chromeos_update_engine::DBusUpdateEngineService
107 return common_->SetDlcActiveValue(error, is_active, dlc_id); in SetDlcActiveValue()
Dcommon_service.h75 bool SetDlcActiveValue(brillo::ErrorPtr* error,
Dcommon_service.cc145 bool UpdateEngineService::SetDlcActiveValue(brillo::ErrorPtr* error, in SetDlcActiveValue() function in chromeos_update_engine::UpdateEngineService
148 if (!SystemState::Get()->update_attempter()->SetDlcActiveValue(is_active, in SetDlcActiveValue()
Ddbus_service.h71 bool SetDlcActiveValue(brillo::ErrorPtr* error,
Dupdate_attempter.h154 virtual bool SetDlcActiveValue(bool is_active, const std::string& dlc_id);
Dupdate_attempter.cc649 bool UpdateAttempter::SetDlcActiveValue(bool is_active, const string& dlc_id) { in SetDlcActiveValue() function in chromeos_update_engine::UpdateAttempter
706 SetDlcActiveValue(true, dlc_id); in CalculateDlcParams()
Dupdate_attempter_unittest.cc2413 TEST_F(UpdateAttempterTest, SetDlcActiveValue) { in TEST_F() argument
2415 attempter_.SetDlcActiveValue(true, dlc_id); in TEST_F()
2433 attempter_.SetDlcActiveValue(false, dlc_id); in TEST_F()
/system/update_engine/client_library/include/update_engine/
Dclient.h68 virtual bool SetDlcActiveValue(bool is_active, const std::string& dlc_id) = 0;
/system/update_engine/client_library/
Dclient_dbus.cc93 bool DBusUpdateEngineClient::SetDlcActiveValue(bool is_active, in SetDlcActiveValue() function in update_engine::internal::DBusUpdateEngineClient
95 return proxy_->SetDlcActiveValue(is_active, dlc_id, /*error=*/nullptr); in SetDlcActiveValue()
Dclient_dbus.h48 bool SetDlcActiveValue(bool is_active, const std::string& dlc_id) override;