Searched defs:TimeoutError (Results 1 - 16 of 16) sorted by relevance

/external/volley/src/main/java/com/android/volley/
H A DTimeoutError.java23 public class TimeoutError extends VolleyError { } class in inherits:VolleyError
/external/devlib/devlib/
H A Dexception.py38 class TimeoutError(DevlibError): class in inherits:DevlibError
45 super(TimeoutError, self).__init__('Timed out: {}'.format(command))
H A Dtarget.py15 from devlib.exception import TargetError, TargetNotRespondingError, TimeoutError namespace
83 except (TargetError, TimeoutError):
337 a ``TimeoutError`` exception will be raised. Set to ``None`` if the
384 except (TargetError, TimeoutError, subprocess.CalledProcessError):
392 except (TimeoutError, subprocess.CalledProcessError):
875 except (TargetError, TimeoutError, subprocess.CalledProcessError):
915 except TimeoutError:
/external/chromium-trace/catapult/devil/devil/utils/
H A Dreraiser_thread.py17 class TimeoutError(Exception): class in inherits:Exception
150 raise TimeoutError('Timed out waiting for %d of %d threads.' %
187 except TimeoutError:
H A Dcmd_helper.py207 class TimeoutError(Exception): class in inherits:Exception
211 super(TimeoutError, self).__init__()
235 raise TimeoutError()
300 raise TimeoutError()
334 the process must finish. If it fails to do so, a TimeoutError
341 TimeoutError: if timeout is set and the process does not complete.
365 TimeoutError on timeout.
376 except TimeoutError:
377 raise TimeoutError(output.getvalue())
/external/libmojo/third_party/catapult/devil/devil/utils/
H A Dcmd_helper.py202 class TimeoutError(Exception): class in inherits:Exception
206 super(TimeoutError, self).__init__()
226 raise TimeoutError()
272 except TimeoutError:
273 raise TimeoutError(output.getvalue())
H A Dreraiser_thread.py17 class TimeoutError(Exception): class in inherits:Exception
150 raise TimeoutError('Timed out waiting for %d of %d threads.' %
187 except TimeoutError:
/external/devlib/devlib/utils/
H A Drendering.py13 from devlib.exception import WorkerThreadError, TargetNotRespondingError, TimeoutError namespace
52 except (TargetNotRespondingError, TimeoutError): # pylint: disable=W0703
H A Dmisc.py39 from devlib.exception import HostError, TimeoutError namespace
164 raise TimeoutError(command, output='\n'.join([output, error]))
H A Dssh.py36 from devlib.exception import HostError, TargetError, TimeoutError namespace
264 raise TimeoutError(command, output)
293 except TimeoutError as e:
294 raise TimeoutError(e.command.replace(pass_string, ''), e.output)
/external/python/cpython2/Lib/multiprocessing/
H A D__init__.py49 'allow_connection_pickling', 'BufferTooShort', 'TimeoutError',
77 class TimeoutError(ProcessError): class in inherits:ProcessError
H A Dpool.py47 from multiprocessing import Process, cpu_count, TimeoutError namespace
563 raise TimeoutError
661 raise TimeoutError
/external/python/cpython2/Lib/multiprocessing/dummy/
H A D__init__.py51 from multiprocessing import TimeoutError, cpu_count namespace
/external/autotest/client/common_lib/
H A Dutils.py2720 class TimeoutError(error.TestError): class in inherits:error.TestError
2736 @param desc: description of default TimeoutError used if 'exception' is
2741 @raise 'exception' arg if supplied; TimeoutError otherwise
2758 raise TimeoutError(desc)
/external/chromium-trace/catapult/devil/devil/android/
H A Ddevice_utils_test.py188 def TimeoutError(self, msg=None): member in class:DeviceUtilsTest
548 self.TimeoutError())):
569 self.TimeoutError())):
589 self.TimeoutError())):
610 (self.call.adb.Shell('dumpsys wifi'), self.TimeoutError())):
1504 self.TimeoutError())):
2226 self.TimeoutError()):
/external/libmojo/third_party/catapult/devil/devil/android/
H A Ddevice_utils_test.py187 def TimeoutError(self, msg=None): member in class:DeviceUtilsTest
516 self.TimeoutError())):
537 self.TimeoutError())):
557 self.TimeoutError())):
578 (self.call.adb.Shell('dumpsys wifi'), self.TimeoutError())):
1383 self.TimeoutError())):
2057 self.TimeoutError()):

Completed in 326 milliseconds