/external/python/cpython2/Lib/test/ |
D | test_timeout.py | 118 _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/ |
D | watchdog_timer.py | 22 self._timeout = timeout 34 if self._timeout: 35 return self._timeout - self.GetElapsed() 41 return self._timeout
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | functional.py | 183 self._timeout = timeout 205 self._timeout = timeout 241 [self._sock, self._s1], [], [], self._timeout) 258 conn.settimeout(self._timeout)
|
/external/oss-fuzz/infra/base-images/base-runner/ |
D | dataflow_tracer.py | 78 def _timeout(size): function 107 result = _run([binary, f, output_path], timeout=_timeout(size))
|
/external/autotest/client/cros/ |
D | mainloop.py | 57 def _timeout(self): member in ExceptionForwardingMainLoop 67 timeout_source = gobject.timeout_add(self.timeout_s * 1000, self._timeout)
|
/external/autotest/client/site_tests/hardware_Badblocks/ |
D | hardware_Badblocks.py | 46 def _timeout(self, badblocks_proc): member in hardware_Badblocks 92 t = threading.Timer(tmout, self._timeout, [badblocks_proc])
|
/external/autotest/server/cros/tradefed/ |
D | tradefed_chromelogin.py | 36 self._timeout = constants.LOGIN_BOARD_TIMEOUT.get( 110 timeout = self._timeout
|
D | tradefed_test.py | 1159 timeout = self._timeout * self._timeout_factor 1199 self._timeout = timeout 1202 self._timeout += 3600
|
/external/autotest/client/site_tests/graphics_dEQP/ |
D | graphics_dEQP.py | 38 _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/rust/crates/parking_lot_core/src/thread_parker/ |
D | wasm.rs | 37 unsafe fn park_until(&self, _timeout: Instant) -> bool { in park_until()
|
D | sgx.rs | 60 unsafe fn park_until(&self, _timeout: Instant) -> bool { in park_until()
|
/external/chromium-trace/catapult/third_party/pyserial/serial/ |
D | serialwin32.py | 112 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:
|
D | serialposix.py | 461 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
|
D | serialjava.py | 127 if self._timeout >= 0: 128 self.sPort.enableReceiveTimeout(self._timeout*1000)
|
D | serialutil.py | 261 self._timeout = None # correct value is assigned below through properties 401 self._timeout = timeout 406 return self._timeout
|
D | serialcli.py | 61 if self._timeout is None: 64 self._port_handle.ReadTimeout = int(self._timeout*1000)
|
/external/autotest/client/cros/update_engine/ |
D | update_engine_event.py | 63 self._timeout = timeout
|
/external/chromium-trace/catapult/third_party/pyserial/serial/urlhandler/ |
D | protocol_socket.py | 140 if self._timeout is not None: 141 timeout = time.time() + self._timeout
|
D | protocol_loop.py | 122 if self._timeout is not None: 123 timeout = time.time() + self._timeout
|
/external/autotest/client/deps/lansim/src/py/ |
D | simulator.py | 304 self._timeout = timeout 399 Simulator.run(self, self._timeout)
|
/external/mesa3d/src/util/ |
D | futex.h | 82 tmo._timeout = *timeout; in futex_wait()
|
/external/autotest/server/cros/update_engine/ |
D | update_engine_test.py | 154 expected_event._timeout) 171 if difference < timedelta(seconds=expected_event._timeout): 210 % (et, expected._timeout, time_taken))
|
/external/python/cpython3/Lib/multiprocessing/ |
D | synchronize.py | 372 (self._parties, self._action, self._timeout, 377 return (self._parties, self._action, self._timeout,
|
/external/libyuv/files/tools_libyuv/valgrind/ |
D | valgrind_test.py | 143 self._timeout = int(self._options.timeout) 181 return common.RunSubprocess(proc, self._timeout)
|
/external/python/cpython3/Lib/ |
D | threading.py | 609 self._timeout = timeout 624 timeout = self._timeout
|