/external/chromium-trace/catapult/third_party/pyserial/serial/ |
D | serialwin32.py | 113 timeouts = (0, 0, 0, 0, 0) 115 timeouts = (win32.MAXDWORD, 0, 0, 0, 0) 117 timeouts = (0, 0, int(self._timeout*1000), 0, 0) 119 timeouts = (int(self._interCharTimeout * 1000),) + timeouts[1:] 124 timeouts = timeouts[:-2] + (0, win32.MAXDWORD) 126 timeouts = timeouts[:-2] + (0, int(self._writeTimeout*1000)) 127 win32.SetCommTimeouts(self.hComPort, ctypes.byref(win32.COMMTIMEOUTS(*timeouts)))
|
/external/autotest/client/site_tests/network_DhcpRenew/ |
D | control | 15 This test fails if shill ignores the T1, T2, or lease timeouts. Since 16 the logic handling these timeouts is handled through dhcpcd, this tests
|
/external/linux-kselftest/android/patches/ |
D | 0015-selftests-futex-report-success-failure-to-environmen.patch | 44 # without timeouts 57 # with timeouts
|
/external/ImageMagick/ |
D | ChangeLog | 21 exceeded, and timeouts (credit to OSS Fuzz). 139 exceeded, and timeouts (credit to OSS Fuzz). 146 exceeded, and timeouts (credit to OSS Fuzz). 183 exceeded, and timeouts (credit to OSS Fuzz). 205 exceeded, and timeouts (credit to OSS Fuzz). 225 exceeded, and timeouts (credit to OSS Fuzz). 236 exceeded, and timeouts (credit to OSS Fuzz). 243 exceeded, and timeouts (credit to OSS Fuzz). 254 exceeded, and timeouts (credit to OSS Fuzz). 282 exceeded, and timeouts (credit to OSS Fuzz). [all …]
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.1rc2.rst | 95 Use a monotonic clock to compute timeouts in :meth:`Executor.map` and 96 :func:`as_completed`, in order to prevent timeouts from deviating when the
|
/external/autotest/client/site_tests/network_DhcpFailureWithStaticIP/ |
D | control | 15 This test only vaidates shill's handling of DHCP timeouts for Ethernet.
|
/external/autotest/client/site_tests/network_DhcpNegotiationTimeout/ |
D | control | 16 This test only vaidates shill's handling of DHCP timeouts for Ethernet.
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/sanitizers/ |
D | ubsan_blacklist.txt | 15 # and UBSan enabled, causing long builds that lead to bot timeouts.
|
/external/wpa_supplicant_8/src/radius/ |
D | radius_client.c | 392 conf->acct_server->timeouts++; in radius_client_retransmit() 409 conf->auth_server->timeouts++; in radius_client_retransmit() 593 old->timeouts++; in radius_client_auth_failover() 623 old->timeouts++; in radius_client_acct_failover() 1599 serv->timeouts, in radius_client_dump_auth_server() 1645 serv->timeouts, in radius_client_dump_acct_server()
|
D | radius_client.h | 104 u32 timeouts; member
|
/external/tensorflow/tensorflow/core/platform/cloud/ |
D | gcs_file_system.h | 96 RetryConfig retry_config, TimeoutConfig timeouts, 157 TimeoutConfig timeouts() const { return timeouts_; } in timeouts() function
|
D | gcs_file_system_test.cc | 3161 EXPECT_EQ(120, fs1.timeouts().connect); in TEST() 3162 EXPECT_EQ(60, fs1.timeouts().idle); in TEST() 3163 EXPECT_EQ(3600, fs1.timeouts().metadata); in TEST() 3164 EXPECT_EQ(3600, fs1.timeouts().read); in TEST() 3165 EXPECT_EQ(3600, fs1.timeouts().write); in TEST() 3199 EXPECT_EQ(10, fs5.timeouts().connect); in TEST() 3200 EXPECT_EQ(5, fs5.timeouts().idle); in TEST() 3201 EXPECT_EQ(20, fs5.timeouts().metadata); in TEST() 3202 EXPECT_EQ(30, fs5.timeouts().read); in TEST() 3203 EXPECT_EQ(40, fs5.timeouts().write); in TEST()
|
D | gcs_file_system.cc | 339 GcsFileSystem::TimeoutConfig* timeouts, in GcsWritableFile() argument 345 timeouts_(timeouts), in GcsWritableFile() 363 GcsFileSystem::TimeoutConfig* timeouts, in GcsWritableFile() argument 369 timeouts_(timeouts), in GcsWritableFile() 812 TimeoutConfig timeouts, const std::unordered_set<string>& allowed_locations, in GcsFileSystem() argument 825 timeouts_(timeouts), in GcsFileSystem()
|
/external/curl/tests/data/ |
D | test1209 | 42 # specifically saying for which connection it concerns, and for timeouts libcurl
|
/external/curl/packages/Symbian/ |
D | readme.txt | 65 P.I.P.S. doesn't support signals or the alarm() call, so some timeouts 69 P.I.P.S. causes a USER:87 panic if certain timeouts much longer than
|
/external/grpc-grpc/src/core/ext/filters/client_channel/resolver/dns/c_ares/ |
D | grpc_ares_wrapper.cc | 175 static void on_hostbyname_done_locked(void* arg, int status, int timeouts, in on_hostbyname_done_locked() argument 257 static void on_srv_query_done_locked(void* arg, int status, int timeouts, in on_srv_query_done_locked() argument 303 static void on_txt_done_locked(void* arg, int status, int timeouts, in on_txt_done_locked() argument
|
/external/deqp/doc/testspecs/GLES3/ |
D | functional.fence_sync.txt | 30 - With varying timeouts
|
/external/okhttp/okio/ |
D | README.md | 41 * **Timeouts.** The streams provide access to the timeouts of the underlying 43 `write()` calls honor timeouts.
|
/external/ipsec-tools/src/racoon/ |
D | TODO | 96 - annoyingly long timeouts on tcp connection attempt, and IKE failure; 97 need to wait till tcp socket timeouts.
|
/external/curl/lib/ |
D | asyn-ares.c | 491 int timeouts, in query_completed_cb() argument 499 (void)timeouts; /* ignored */ in query_completed_cb()
|
/external/okhttp/ |
D | CHANGELOG.md | 142 the timeouts manually. 257 * Fix: OkHttp no longer shares timeouts between pooled connections. This was 264 * Fix: HTTP/2 wasn't enforcing stream timeouts when writing the underlying 361 * Fix: Don't retry requests that failed due to timeouts. 618 * Implement write timeouts for HTTP/1.1 streams. 704 * Fix: Use strict timeouts when aborting a download. 724 * Fix: Respect read timeouts on recycled connections. 748 * New APIs on OkHttpClient to set default timeouts for connect and read.
|
/external/curl/docs/ |
D | KNOWN_BUGS | 44 4.3 --retry and transfer timeouts 88 10.2 SOCKS don't support timeouts 349 4.3 --retry and transfer timeouts 351 If using --retry and the transfer timeouts (possibly due to using -m or 640 10.2 SOCKS don't support timeouts 642 The SOCKS4 connection codes don't properly acknowledge (connect) timeouts.
|
/external/python/cpython3/Doc/library/ |
D | asyncio-api-index.rst | 15 await on multiple things with timeouts.
|
/external/libevent/ |
D | ChangeLog-1.4 | 119 …o Correctly handle timeouts larger than 35 minutes on Linux with epoll.c. This is probably a kern… 144 o remove pending timeouts on event_base_free() 194 o Handle NULL timeouts correctly on Solaris; from Trond Norbye 212 …o use a min heap instead of a red-black tree for timeouts; as a result finding the min is a O(1) o…
|
/external/libusb/ |
D | ChangeLog | 32 * Correctly report cancellations due to timeouts 122 * Fix unwanted cancellation of pending timeouts as well as major timeout related bugs
|