Home
last modified time | relevance | path

Searched refs:_timeout (Results 1 – 25 of 31) sorted by relevance

12

/external/python/cpython2/Lib/test/
Dtest_timeout.py118 _timeout = 0.001
119 self.sock.settimeout(_timeout)
126 self.assertTrue(_delta < _timeout + self.fuzz,
128 %(_delta, self.fuzz, _timeout))
132 _timeout = 0.02
136 self.sock.settimeout(_timeout)
143 self.assertTrue(_delta < _timeout + self.fuzz,
145 %(_delta, self.fuzz, _timeout))
149 _timeout = 2
150 self.sock.settimeout(_timeout)
[all …]
/external/chromium-trace/catapult/devil/devil/utils/
Dwatchdog_timer.py22 self._timeout = timeout
34 if self._timeout:
35 return self._timeout - self.GetElapsed()
41 return self._timeout
/external/python/cpython3/Lib/test/test_asyncio/
Dfunctional.py183 self._timeout = timeout
205 self._timeout = timeout
241 [self._sock, self._s1], [], [], self._timeout)
258 conn.settimeout(self._timeout)
/external/autotest/client/cros/
Dmainloop.py57 def _timeout(self): member in ExceptionForwardingMainLoop
67 timeout_source = gobject.timeout_add(self.timeout_s * 1000, self._timeout)
/external/oss-fuzz/infra/base-images/base-runner/
Ddataflow_tracer.py78 def _timeout(size): function
107 result = _run([binary, f, output_path], timeout=_timeout(size))
/external/autotest/client/site_tests/hardware_Badblocks/
Dhardware_Badblocks.py46 def _timeout(self, badblocks_proc): member in hardware_Badblocks
92 t = threading.Timer(tmout, self._timeout, [badblocks_proc])
/external/autotest/client/site_tests/graphics_dEQP/
Dgraphics_dEQP.py38 _timeout = 70 # Larger than twice the dEQP watchdog timeout at 30s. variable in graphics_dEQP
369 timeout=self._timeout,
437 batch_timeout = min(3600, self._timeout * self._hasty_batch_size)
527 timeout=self._timeout,
540 self._timeout = int(options['timeout'])
/external/autotest/server/cros/tradefed/
Dtradefed_chromelogin.py36 self._timeout = constants.LOGIN_BOARD_TIMEOUT.get(
110 timeout = self._timeout
Dtradefed_test.py1159 timeout = self._timeout * self._timeout_factor
1199 self._timeout = timeout
1202 self._timeout += 3600
/external/chromium-trace/catapult/third_party/pyserial/serial/
Dserialwin32.py112 if self._timeout is None:
114 elif self._timeout == 0:
117 timeouts = (0, 0, int(self._timeout*1000), 0, 0)
118 if self._timeout != 0 and self._interCharTimeout is not None:
Dserialposix.py461 ready,_,_ = select.select([self.fd],[],[], self._timeout)
672 for fd, event in poll.poll(self._timeout*1000):
679 if ((self._timeout is not None and self._timeout >= 0) or
Dserialjava.py127 if self._timeout >= 0:
128 self.sPort.enableReceiveTimeout(self._timeout*1000)
Dserialutil.py261 self._timeout = None # correct value is assigned below through properties
401 self._timeout = timeout
406 return self._timeout
Dserialcli.py61 if self._timeout is None:
64 self._port_handle.ReadTimeout = int(self._timeout*1000)
/external/rust/crates/parking_lot_core/src/thread_parker/
Dwasm.rs37 unsafe fn park_until(&self, _timeout: Instant) -> bool { in park_until()
Dsgx.rs60 unsafe fn park_until(&self, _timeout: Instant) -> bool { in park_until()
/external/chromium-trace/catapult/third_party/pyserial/serial/urlhandler/
Dprotocol_loop.py122 if self._timeout is not None:
123 timeout = time.time() + self._timeout
Dprotocol_socket.py140 if self._timeout is not None:
141 timeout = time.time() + self._timeout
/external/autotest/client/cros/update_engine/
Dupdate_engine_event.py63 self._timeout = timeout
/external/autotest/client/deps/lansim/src/py/
Dsimulator.py304 self._timeout = timeout
399 Simulator.run(self, self._timeout)
/external/mesa3d/src/util/
Dfutex.h82 tmo._timeout = *timeout; in futex_wait()
/external/autotest/server/cros/update_engine/
Dupdate_engine_test.py154 expected_event._timeout)
171 if difference < timedelta(seconds=expected_event._timeout):
210 % (et, expected._timeout, time_taken))
/external/python/cpython3/Lib/multiprocessing/
Dsynchronize.py372 (self._parties, self._action, self._timeout,
377 return (self._parties, self._action, self._timeout,
/external/libyuv/files/tools_libyuv/valgrind/
Dvalgrind_test.py143 self._timeout = int(self._options.timeout)
181 return common.RunSubprocess(proc, self._timeout)
/external/python/cpython3/Lib/
Dthreading.py609 self._timeout = timeout
624 timeout = self._timeout

12