Lines Matching full:timeout
89 # This is the timeout on the wait for console bytes.
196 # Intentionally bump up the default timeout under TCG,
198 timeout = self.socket_timeout
200 timeout *= 8
201 self.console_init(timeout=timeout)
322 def console_init(self, timeout = None): argument
323 if timeout == None:
324 timeout = self.socket_timeout
326 vm.console_socket.settimeout(timeout)
354 except socket.timeout:
355 sys.stderr.write("console: *** read timeout ***\n")
450 logging.debug("%ds before timeout", seconds)
453 raise Exception("Timeout while waiting for guest ssh")
456 self._guest.shutdown(timeout=self._shutdown_timeout)
459 self._guest.wait(timeout=self._shutdown_timeout)
463 self._guest.wait(timeout=self._shutdown_timeout)