Searched refs:stopper (Results 1 – 4 of 4) sorted by relevance
74 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() argument200 subprocess_stopper_ = std::move(stopper); in SetStopper()203 Command SetStopper(SubprocessStopper stopper) && { in SetStopper() argument204 return std::move(SetStopper(std::move(stopper))); in SetStopper()
313 Command::Command(std::string executable, SubprocessStopper stopper) in Command() argument314 : subprocess_stopper_(stopper) { in Command()
62 auto stopper = [executable_path, control_socket]() { in AddControlSocket() local69 command_.SetStopper(KillSubprocessFallback(stopper)); in AddControlSocket()
253 auto stopper = [webrtc_recorder = webrtc_recorder_]() { in Commands() local258 Command webrtc(WebRtcBinary(), KillSubprocessFallback(stopper)); in Commands()