Home
last modified time | relevance | path

Searched refs:ChannelMonitor (Results 1 – 24 of 24) sorted by relevance

/device/google/cuttlefish/host/commands/modem_simulator/
Dchannel_monitor.h66 class ChannelMonitor {
68 ChannelMonitor(ModemSimulator* modem, cuttlefish::SharedFD server);
69 ~ChannelMonitor();
71 ChannelMonitor(const ChannelMonitor&) = delete;
72 ChannelMonitor& operator=(const ChannelMonitor&) = delete;
Dchannel_monitor.cpp60 ChannelMonitor::ChannelMonitor(ModemSimulator* modem, in ChannelMonitor() function in cuttlefish::ChannelMonitor
71 void ChannelMonitor::SetRemoteClient(cuttlefish::SharedFD client, bool is_accepted) { in SetRemoteClient()
92 void ChannelMonitor::AcceptIncomingConnection() { in AcceptIncomingConnection()
107 void ChannelMonitor::ReadCommand(Client& client) { in ReadCommand()
163 void ChannelMonitor::SendUnsolicitedCommand(std::string& response) { in SendUnsolicitedCommand()
173 void ChannelMonitor::SendRemoteCommand(cuttlefish::SharedFD client, std::string& response) { in SendRemoteCommand()
184 void ChannelMonitor::CloseRemoteConnection(cuttlefish::SharedFD client) { in CloseRemoteConnection()
204 ChannelMonitor::~ChannelMonitor() { in ~ChannelMonitor()
227 void ChannelMonitor::MonitorLoop() { in MonitorLoop()
Dmodem_simulator.h33 void Initialize(std::unique_ptr<ChannelMonitor>&& channel_monitor);
46 std::unique_ptr<ChannelMonitor> channel_monitor_;
Dmodem_service.h100 ChannelMonitor* channel_monitor, ThreadLooper* thread_looper);
113 ChannelMonitor* channel_monitor_;
Dmisc_service.h24 MiscService(int32_t service_id, ChannelMonitor* channel_monitor,
Dstk_service.h25 StkService(int32_t service_id, ChannelMonitor* channel_monitor,
Ddata_service.h24 DataService(int32_t service_id, ChannelMonitor* channel_monitor,
Dsup_service.h24 SupService(int32_t service_id, ChannelMonitor* channel_monitor,
Dsms_service.h26 SmsService(int32_t service_id, ChannelMonitor* channel_monitor,
Dcall_service.h26 CallService(int32_t service_id, ChannelMonitor* channel_monitor,
Dmisc_service.cpp23 MiscService::MiscService(int32_t service_id, ChannelMonitor* channel_monitor, in MiscService()
Dmain.cpp101 std::make_unique<cuttlefish::ChannelMonitor>(modem_simulator.get(), fd); in main()
Dmodem_service.cpp82 ChannelMonitor* channel_monitor, in ModemService()
Dmodem_simulator.cpp50 std::unique_ptr<ChannelMonitor>&& channel_monitor) { in Initialize()
Dsim_service.h30 SimService(int32_t service_id, ChannelMonitor* channel_monitor,
Dnetwork_service.h29 NetworkService(int32_t service_id_, ChannelMonitor* channel_monitor,
Dstk_service.cpp20 StkService::StkService(int32_t service_id, ChannelMonitor* channel_monitor, in StkService()
Dsup_service.cpp20 SupService::SupService(int32_t service_id, ChannelMonitor* channel_monitor, in SupService()
Ddata_service.cpp24 DataService::DataService(int32_t service_id, ChannelMonitor* channel_monitor, in DataService()
Dsms_service.cpp22 SmsService::SmsService(int32_t service_id, ChannelMonitor* channel_monitor, in SmsService()
Dcall_service.cpp22 CallService::CallService(int32_t service_id, ChannelMonitor* channel_monitor, in CallService()
Dnetwork_service.cpp43 ChannelMonitor* channel_monitor, in NetworkService()
Dsim_service.cpp284 SimService::SimService(int32_t service_id, ChannelMonitor* channel_monitor, in SimService()
/device/google/cuttlefish/host/commands/modem_simulator/unittest/
Dservice_test.cpp88 std::make_unique<ChannelMonitor>(modem_simulator_, server); in SetUpTestSuite()