HomeSort by relevance Sort by last modified time
    Searched defs:timeout (Results 26 - 50 of 1817) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/iptables/include/linux/netfilter/
xt_IDLETIMER.h 42 __u32 timeout; member in struct:idletimer_tg_info
  /external/junit/src/main/java/org/junit/runners/model/
TestTimedOutException.java 6 * Exception thrown when a test fails on timeout.
16 private final long timeout; field in class:TestTimedOutException
19 * Creates exception with a standard message "test timed out after [timeout] [timeUnit]"
21 * @param timeout the amount of time passed before the test was interrupted
22 * @param timeUnit the time unit for the timeout value
24 public TestTimedOutException(long timeout, TimeUnit timeUnit) {
26 timeout, timeUnit.name().toLowerCase()));
28 this.timeout = timeout;
35 return timeout;
    [all...]
  /external/libevent/test/
test-closed.c 52 struct timeval timeout = {3, 0}; variable in typeref:struct:timeval
58 printf("%s: Timeout!\n", __func__);
103 event_add(ev, &timeout);
  /external/libmicrohttpd/src/microhttpd/
connection_https.c 134 unsigned int timeout; local
142 timeout = connection->connection_timeout;
143 if ( (timeout != 0) && (timeout <= (MHD_monotonic_time() - connection->last_activity)))
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_timedlock/
1-1.c 11 * available. The wait will end when the specified timeout time has expired.
13 * The timeout expires when the absolute time 'abs_timeout' passes, or if 'abs_timeout'
36 #define TIMEOUT 3 /* 3 seconds of timeout time for
89 if (time_diff.tv_sec < TIMEOUT) {
92 TIMEOUT);
112 struct timespec timeout; local
118 timeout.tv_sec = currsec1.tv_sec + TIMEOUT;
119 timeout.tv_nsec = currsec1.tv_usec * 1000
    [all...]
4-1.c 29 #define TIMEOUT 3 /* 3 seconds of timeout time for
78 struct timespec timeout; local
80 timeout.tv_sec = time(NULL) + TIMEOUT;
81 timeout.tv_nsec = 0;
85 ret = pthread_mutex_timedlock(&mutex, &timeout);
5-3.c 12 * [ETIMEDOUT] - The timeout expried and the mutex could not be locked.
33 #define TIMEOUT 3 /* 3 seconds of timeout time for
101 struct timespec timeout; local
103 timeout.tv_sec = time(NULL);
104 timeout.tv_nsec = 0;
108 ret = pthread_mutex_timedlock(&mutex, &timeout);
  /external/okhttp/okio/okio/src/main/java/okio/
ForwardingSource.java 38 @Override public Timeout timeout() { method in class:ForwardingSource
39 return delegate.timeout();
Okio.java 62 return sink(out, new Timeout());
65 private static Sink sink(final OutputStream out, final Timeout timeout) {
67 if (timeout == null) throw new IllegalArgumentException("timeout == null");
73 timeout.throwIfReached();
97 @Override public Timeout timeout() { method in class:Okio
98 return timeout;
114 AsyncTimeout timeout = timeout(socket)
    [all...]
  /external/pdfium/fxjs/xfa/
cjx_connect.cpp 21 void CJX_Connect::timeout(CFXJSE_Value* pValue, function in class:CJX_Connect
  /external/syslinux/core/thread/
timeout.c 2 * timeout.c
21 mstime_t timeout; local
26 if ((block = t->blocked) && (timeout = block->timeout)) {
27 if ((mstimediff_t)(timeout - now) <= 0) {
  /external/testng/src/test/java/test/timeout/
TimeOutIntegrationTest.java 1 package test.timeout;
TimeOutTest.java 1 package test.timeout;
  /external/tpm2/
PolicyTicket_fp.h 14 TPM2B_TIMEOUT timeout; member in struct:__anon40473
  /external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
p2p_disconnect.py 40 global timeout
49 def __init__(self,interface_name,wpas_dbus_interface,timeout):
53 self.timeout = timeout
104 # Required for timeout implementation
113 timeout = 5 variable
152 wpas_dbus_interface,timeout)
163 time.sleep(int(p2p_disconnect_test.timeout))
p2p_find.py 3 # Will list all devices found/lost within a time frame (timeout)
17 print " %s -i <interface_name> [-t <timeout>] \ " \
22 print " -t = timeout = 0s (infinite)"
43 global timeout
53 def __init__(self,interface_name,wpas_dbus_interface,timeout):
55 self.timeout = int(timeout)
111 {'Timeout':int(self.timeout)})
117 # Required for timeout implementatio
125 timeout = 0 variable
    [all...]
p2p_flush.py 40 global timeout
49 def __init__(self,interface_name,wpas_dbus_interface,timeout):
53 self.timeout = timeout
104 # Required for timeout implementation
113 timeout = 5 variable
151 p2p_flush_test = P2P_Flush(interface_name, wpas_dbus_interface,timeout)
162 time.sleep(int(p2p_flush_test.timeout))
p2p_listen.py 17 print " %s -i <interface_name> [-t <timeout>] \ " \
22 print " -t = timeout = 0s (infinite)"
41 global timeout
50 def __init__(self,interface_name,wpas_dbus_interface,timeout):
52 self.timeout = int(timeout)
104 self.p2p_interface.Listen(int(self.timeout))
107 # Required for timeout implementation
115 timeout = 0 variable
138 # Timeout
    [all...]
p2p_stop_find.py 42 global timeout
51 def __init__(self,interface_name,wpas_dbus_interface,timeout):
55 self.timeout = timeout
109 # Required for timeout implementation
118 timeout = 5 variable
157 wpas_dbus_interface,timeout)
168 time.sleep(int(p2p_stop_find_test.timeout))
  /system/core/init/
watchdogd.cpp 54 int timeout = interval + margin; local
55 int ret = ioctl(fd, WDIOC_SETTIMEOUT, &timeout);
57 PLOG(ERROR) << "Failed to set timeout to " << timeout;
58 ret = ioctl(fd, WDIOC_GETTIMEOUT, &timeout);
60 PLOG(ERROR) << "Failed to get timeout";
62 if (timeout > margin) {
63 interval = timeout - margin;
67 LOG(WARNING) << "Adjusted interval to timeout returned by driver: "
68 << "timeout " << timeou
    [all...]
  /tools/test/connectivity/acts/tests/google/nfc/
NfcBasicFunctionalityTest.py 26 timeout = 5 variable in class:NfcBasicFunctionalityTest
47 dut.ed.pop_event(self.nfc_on_event, self.timeout)
59 dut.ed.pop_event(self.nfc_off_event, self.timeout)
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/
ConnectionChecker.java 39 long timeout = mTimeout * 1000; local
41 if (System.currentTimeMillis() - startTime > timeout) {
  /cts/tests/autofillservice/src/android/autofillservice/cts/
TimeoutTest.java 46 assertThrows(IllegalArgumentException.class, ()-> new Timeout(null, 1, 2, 2));
47 assertThrows(IllegalArgumentException.class, ()-> new Timeout("", 1, 2, 2));
49 assertThrows(IllegalArgumentException.class, ()-> new Timeout(NAME, -1, 2, 2));
50 assertThrows(IllegalArgumentException.class, ()-> new Timeout(NAME, 0, 2, 2));
52 assertThrows(IllegalArgumentException.class, ()-> new Timeout(NAME, 1, -1, 2));
53 assertThrows(IllegalArgumentException.class, ()-> new Timeout(NAME, 1, 0, 2));
54 assertThrows(IllegalArgumentException.class, ()-> new Timeout(NAME, 1, 1, 2));
56 assertThrows(IllegalArgumentException.class, ()-> new Timeout(NAME, 1, 2, -1));
57 assertThrows(IllegalArgumentException.class, ()-> new Timeout(NAME, 1, 2, 0));
59 assertThrows(IllegalArgumentException.class, ()-> new Timeout(NAME, 2, 2, 1))
64 final Timeout timeout = new Timeout(NAME, 1, 2, 5); local
73 final Timeout timeout = new Timeout(NAME, 1, 2, 5); local
88 final Timeout timeout = new Timeout(NAME, 1, 2, 5); local
101 final Timeout timeout = new Timeout(NAME, 100, 2, 500); local
109 final Timeout timeout = new Timeout(NAME, 100, 2, 500); local
117 final Timeout timeout = new Timeout(NAME, 100, 2, 500); local
    [all...]
RetryRule.java 60 final Timeout timeout = e.getTimeout(); local
61 if (timeout != null) {
62 long before = timeout.ms();
63 timeout.increase();
64 Log.d(TAG, "Increased " + timeout.getName() + " from " + before + "ms"
65 + " to " + timeout.ms() + "ms");
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_CT.h 44 char timeout[32]; member in struct:xt_ct_target_info_v1

Completed in 259 milliseconds

12 3 4 5 6 7 8 91011>>