Lines Matching defs:kill
81 self.assertRaises(ProcessLookupError, transport.kill)
178 proc.kill()
205 proc.kill()
471 proc.kill()
489 # "Exception during subprocess creation, kill the subprocess"
507 # "Exception during subprocess creation, kill the subprocess"
520 def kill():
526 orig_kill = proc.kill
527 proc.kill = kill
533 # Ignore "Close running child process: kill ..." log
545 # transport.close() must kill the process if it is still running
557 # kill the process (but asyncio is not notified immediately)
558 proc.kill()
561 proc.kill = mock.Mock()
565 return (proc_returncode, transport_returncode, proc.kill.called)
579 # transport.close() must not kill the process if it finished, even if