Home
last modified time | relevance | path

Searched refs:stopper (Results 1 – 4 of 4) sorted by relevance

/device/google/cuttlefish/common/libs/utils/
Dsubprocess.h74 Subprocess(pid_t pid, SubprocessStopper stopper = KillSubprocess)
75 : pid_(pid), started_(pid > 0), stopper_(stopper) {} in pid_()
162 Command(std::string executable, SubprocessStopper stopper = KillSubprocess);
199 Command& SetStopper(SubprocessStopper stopper) & { in SetStopper() argument
200 subprocess_stopper_ = std::move(stopper); in SetStopper()
203 Command SetStopper(SubprocessStopper stopper) && { in SetStopper() argument
204 return std::move(SetStopper(std::move(stopper))); in SetStopper()
Dsubprocess.cpp313 Command::Command(std::string executable, SubprocessStopper stopper) in Command() argument
314 : subprocess_stopper_(stopper) { in Command()
/device/google/cuttlefish/host/libs/vm_manager/
Dcrosvm_builder.cpp62 auto stopper = [executable_path, control_socket]() { in AddControlSocket() local
69 command_.SetStopper(KillSubprocessFallback(stopper)); in AddControlSocket()
/device/google/cuttlefish/host/commands/run_cvd/launch/
Dstreamer.cpp253 auto stopper = [webrtc_recorder = webrtc_recorder_]() { in Commands() local
258 Command webrtc(WebRtcBinary(), KillSubprocessFallback(stopper)); in Commands()