Home
last modified time | relevance | path

Searched refs:is_timeout (Results 1 – 8 of 8) sorted by relevance

/external/deqp/external/openglcts/modules/gl/
Dgl4cSyncTests.cpp105 bool is_timeout = false; in iterate() local
167 is_timeout = true; in iterate()
220 if (is_timeout) in iterate()
/external/autotest/site_utils/rpm_control_system/
Drpm_controller.py167 is_timeout = multiprocessing.Value(ctypes.c_bool, False)
170 is_timeout))
178 is_timeout.value = True
180 if is_timeout.value:
198 def _process_request(self, request, result, is_timeout): argument
239 is_timeout.value = is_timeout_value
/external/autotest/client/common_lib/cros/
Dretry.py223 is_timeout, result = timeout(func, args, kwargs,
225 if not is_timeout:
/external/rust/crates/crossbeam-channel/src/
Derr.rs266 pub fn is_timeout(&self) -> bool { in is_timeout() method
351 pub fn is_timeout(&self) -> bool { in is_timeout() method
/external/autotest/server/
Dsite_crashcollect.py114 is_timeout, _ = retry.timeout(_symbolicate_minidump_with_devserver,
117 if is_timeout:
/external/rust/crates/crossbeam-channel/
DCHANGELOG.md74 - Add methods `is_disconnected()`, `is_timeout()`, `is_empty()`, and `is_full()` on error types.
/external/python/httplib2/python2/httplib2/
D__init__.py2195 is_timeout = isinstance(e, socket.timeout)
2196 if is_timeout:
2207 elif is_timeout:
/external/python/httplib2/python3/httplib2/
D__init__.py1997 is_timeout = isinstance(e, socket.timeout)
1998 if is_timeout: