/external/dhcpcd/ |
eloop.c | 56 } *timeouts; variable in typeref:struct:timeout 128 for (t = timeouts; t; t = t->next) { 133 timeouts = t->next; 158 if (!timeouts || timercmp(&t->when, &timeouts->when, <)) { 159 t->next = timeouts; 160 timeouts = t; 163 for (tt = timeouts; tt->next; tt = tt->next) 183 /* This deletes all timeouts for the interface EXCEPT for ones with the 193 for (t = timeouts; t && (tt = t->next, 1); t = tt) [all...] |
/external/okhttp/okio/okio/src/main/java/okio/ |
Timeout.java | 29 * <h3>Timeouts and Deadlines</h3> 32 * <p><strong>Timeouts</strong> specify the maximum time to wait for a single 33 * operation to complete. Timeouts are typically used to detect problems like 44 * An empty timeout that neither tracks nor detects timeouts. Use this when 45 * timeouts aren't necessary, such as in implementations whose operations 78 * system timeouts may still apply.) 126 /** Clears the timeout. Operating system timeouts may still apply. */ 140 * thread has been interrupted. This method doesn't detect timeouts; that should be implemented to
|
AsyncTimeout.java | 23 * occurs. Use this to implement timeouts where they aren't supported natively, 29 * timeouts from being triggered. 36 * timeouts, and {@link #exit} afterwards. The return value of {@link #exit} 42 * The watchdog thread processes a linked list of pending timeouts, sorted in 146 * timeouts. This works best if {@link #timedOut} is overridden to interrupt 202 * implement timeouts. This works best if {@link #timedOut} is overridden to
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/detail/ |
log_level.hpp | 34 log_system_errors = 6, // including timeouts, signals, traps
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/usb/ |
vstusb.h | 32 * interface with ioctl configured pipes and timeouts. 42 * Changing read/write timeouts or pipes takes effect on next read/write.
|
/frameworks/base/core/java/android/net/netlink/ |
NetlinkSocket.java | 99 throw new IllegalArgumentException("Negative timeouts not permitted"); 107 * Multi-threaded calls with different timeouts will cause unexpected results. 147 * Multi-threaded calls with different timeouts will cause unexpected results.
|
/frameworks/av/services/camera/libcameraservice/utils/ |
AutoConditionLock.h | 32 * wrapped Mutex with timeouts for lock acquisition. 50 * AutoConditionLock is a scoped lock similar to Mutex::Autolock, but allows timeouts to be
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
Uninterruptibles.java | 82 // CountDownLatch treats negative timeouts just like zero. 170 // Future treats negative timeouts just like zero. 198 // TimeUnit.timedJoin() treats negative timeouts just like zero. 272 // TimeUnit.sleep() treats negative timeouts just like zero.
|
/external/kernel-headers/original/uapi/linux/mmc/ |
ioctl.h | 31 * Override driver-computed timeouts. Note the difference in units!
|
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/ |
MockExecutor.java | 25 * avoid timeouts waiting for threads to finish.
|
MockNamedTaskExecutor.java | 25 * avoid timeouts waiting for threads to finish.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/mmc/ |
ioctl.h | 28 * Override driver-computed timeouts. Note the difference in units!
|
/system/bt/device/include/ |
interop.h | 34 // timeouts are received during pairing.
|
/external/wpa_supplicant_8/src/radius/ |
radius_client.h | 102 * timeouts - radiusAuthClientTimeouts or radiusAccClientTimeouts 104 u32 timeouts; member in struct:hostapd_radius_server
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
Timeouts.java | 28 public final class Timeouts { 32 private Timeouts() {}
|
/external/webrtc/src/modules/interface/ |
module.h | 29 // Process any pending tasks such as timeouts.
|
/frameworks/base/docs/html/guide/topics/connectivity/ |
index.jd | 17 uploads and downloads, configurable timeouts, IPv6 and connection pooling.</p>
|
/packages/apps/Stk/src/com/android/stk/ |
StkApp.java | 35 // Display Text timeouts
|
/external/okhttp/okio/ |
README.md | 41 * **Timeouts.** The streams provide access to the timeouts of the underlying 43 `write()` calls honor timeouts.
|
/external/wpa_supplicant_8/src/utils/ |
eloop.h | 9 * from registered timeouts (i.e., do something after N seconds), sockets 21 * ELOOP_ALL_CTX - eloop_cancel_timeout() magic number to match all timeouts 184 * eloop_cancel_timeout - Cancel timeouts 188 * Returns: Number of cancelled timeouts 190 * Cancel matching <handler,eloop_data,user_data> timeouts registered with 192 * cancelling all timeouts regardless of eloop_data/user_data. 203 * Returns: Number of cancelled timeouts
|
/libcore/luni/src/main/java/java/net/ |
SocketOptions.java | 48 * timeouts will be treated as 65535s timeouts; roughly 18 hours.) 58 * timeouts are not allowed.
|
/external/deqp/doc/testspecs/GLES3/ |
functional.fence_sync.txt | 30 - With varying timeouts
|
/external/deqp/framework/qphelper/ |
qpWatchDog.h | 23 * \brief Watch dog for detecting timeouts
|
/frameworks/volley/src/main/java/com/android/volley/ |
DefaultRetryPolicy.java | 45 * Constructs a new retry policy using the default timeouts.
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
HttpHelper.java | 25 * with timeouts.
|