Home
last modified time | relevance | path

Searched refs:DlcServiceInterface (Results 1 – 9 of 9) sorted by relevance

/system/update_engine/common/
Ddlcservice_interface.h30 class DlcServiceInterface {
32 virtual ~DlcServiceInterface() = default;
47 DlcServiceInterface() = default;
50 DISALLOW_COPY_AND_ASSIGN(DlcServiceInterface);
55 std::unique_ptr<DlcServiceInterface> CreateDlcService();
Dsystem_state.h46 class DlcServiceInterface; variable
121 virtual DlcServiceInterface* dlcservice() = 0;
Ddlcservice_stub.cc26 std::unique_ptr<DlcServiceInterface> CreateDlcService() { in CreateDlcService()
Ddlcservice_stub.h28 class DlcServiceStub : public DlcServiceInterface {
/system/update_engine/cros/
Dreal_system_state.h111 DlcServiceInterface* dlcservice() override { return dlcservice_.get(); } in dlcservice()
126 std::unique_ptr<DlcServiceInterface> dlcservice_;
Ddlcservice_chromeos.h30 class DlcServiceChromeOS : public DlcServiceInterface {
Dfake_system_state.h114 inline DlcServiceInterface* dlcservice() override { return dlcservice_; } in dlcservice()
181 inline void set_dlcservice(DlcServiceInterface* dlcservice) { in set_dlcservice()
297 DlcServiceInterface* dlcservice_;
Ddlcservice_chromeos.cc37 std::unique_ptr<DlcServiceInterface> CreateDlcService() { in CreateDlcService()
Dupdate_attempter_unittest.cc154 class MockDlcService : public DlcServiceInterface {