Home
last modified time | relevance | path

Searched refs:ParentToChildMessage (Results 1 – 3 of 3) sorted by relevance

/device/google/cuttlefish/host/libs/process_monitor/
Dprocess_monitor_channel.cc28 ParentToChildMessage::ParentToChildMessage(const ParentToChildMessageType type) in ParentToChildMessage() function in cuttlefish::process_monitor_impl::ParentToChildMessage
31 Result<void> ParentToChildMessage::Write(const SharedFD& fd) { in Write()
42 Result<ParentToChildMessage> ParentToChildMessage::Read(const SharedFD& fd) { in Read()
51 return ParentToChildMessage{type}; in Read()
Dprocess_monitor.cc264 using process_monitor_impl::ParentToChildMessage; in ReadMonitorSocketLoop()
265 auto message = CF_EXPECT(ParentToChildMessage::Read(child_monitor_socket_)); in ReadMonitorSocketLoop()
367 using process_monitor_impl::ParentToChildMessage; in StopMonitoredProcesses()
369 ParentToChildMessage message(ParentToChildMessageType::kStop); in StopMonitoredProcesses()
389 using process_monitor_impl::ParentToChildMessage; in SuspendMonitoredProcesses()
391 ParentToChildMessage message(ParentToChildMessageType::kHostSuspend); in SuspendMonitoredProcesses()
405 using process_monitor_impl::ParentToChildMessage; in ResumeMonitoredProcesses()
407 ParentToChildMessage message(ParentToChildMessageType::kHostResume); in ResumeMonitoredProcesses()
Dprocess_monitor_channel.h39 class ParentToChildMessage {
41 ParentToChildMessage(const ParentToChildMessageType type);
43 static Result<ParentToChildMessage> Read(const SharedFD& fd);