Lines Matching refs:timeout
107 def exec_command_communicate(cmd, timeout=60):
119 out, err_ = proc.communicate(timeout=timeout)
1037 def exec_command_select(self, cmd, timeout=60, ptyflag=False):
1052 if timeout and time.time() - start_time > timeout:
1082 if timeout and time.time() - start_time > timeout:
1136 def exec_command(self, cmd, ptyflag=PTYFLAG, timeout=TIMEOUT):
1138 return self.exec_command_select(cmd, timeout=timeout, ptyflag=ptyflag)
1140 return self.exec_command_communicate(cmd, timeout=timeout