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

12 3 4 5 6 7 8 91011>>

  /external/u-boot/drivers/watchdog/
imx_watchdog.c 25 u16 timeout; local
35 timeout = (CONFIG_WATCHDOG_TIMEOUT_MSECS / 500) - 1;
37 WCR_WDA | SET_WCR_WT(timeout), &wdog->wcr);
49 writew(0xaaaa, &wdog->wsr); /* load minimum 1/2 second timeout */
  /external/autotest/client/common_lib/cros/
retry.py 49 Set the sigalarm timeout.
51 This methods treats any timeout <= 0 as a possible error and falls back to
52 using it's default timeout, since negative timeouts can have 'alarming'
53 effects. Though 0 is a valid timeout, it is often used to cancel signals; in
55 many situations where a 0 timeout is considered invalid.
57 @param timeout_secs: The new timeout, in seconds.
58 @param default_timeout: The default timeout to use, if timeout <= 0.
59 @return: The old sigalarm timeout
81 error message (function name and timeout length) instead of a generi
95 def timeout(func, args=(), kwargs={}, timeout_sec=60.0, default_result=None): function
    [all...]
  /external/grpc-grpc/src/objective-c/GRPCClient/
GRPCCall.h 174 * The timeout for the RPC call in seconds. If set to 0, the call will not timeout. If set to
176 * within \a timeout seconds. A negative value is not allowed.
178 @property NSTimeInterval timeout; variable
  /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/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'
35 #define TIMEOUT 3 /* 3 seconds of timeout time for
88 if (time_diff.tv_sec < TIMEOUT) {
91 TIMEOUT);
111 struct timespec timeout; local
117 timeout.tv_sec = currsec1.tv_sec + TIMEOUT;
118 timeout.tv_nsec = currsec1.tv_usec * 1000
    [all...]
4-1.c 28 #define TIMEOUT 3 /* 3 seconds of timeout time for
77 struct timespec timeout; local
79 timeout.tv_sec = time(NULL) + TIMEOUT;
80 timeout.tv_nsec = 0;
84 ret = pthread_mutex_timedlock(&mutex, &timeout);
5-1.c 36 #define TIMEOUT 3 /* 3 seconds of timeout time for
86 struct timespec timeout; local
96 timeout.tv_sec = time(NULL) + TIMEOUT;
97 timeout.tv_nsec = INVALID_TIME;
100 ret = pthread_mutex_timedlock(&mutex, &timeout);
5-2.c 36 #define TIMEOUT 3 /* 3 seconds of timeout time for
86 struct timespec timeout; local
96 timeout.tv_sec = time(NULL) + TIMEOUT;
97 timeout.tv_nsec = INVALID_TIME;
100 ret = pthread_mutex_timedlock(&mutex, &timeout);
5-3.c 12 * [ETIMEDOUT] - The timeout expried and the mutex could not be locked.
32 #define TIMEOUT 3 /* 3 seconds of timeout time for
100 struct timespec timeout; local
102 timeout.tv_sec = time(NULL);
103 timeout.tv_nsec = 0;
107 ret = pthread_mutex_timedlock(&mutex, &timeout);
  /external/oj-libjdwp/src/share/classes/com/sun/jdi/event/
MonitorWaitEvent.java 65 public long timeout(); method in interface:MonitorWaitEvent
  /external/okhttp/okio/okio/src/main/java/okio/
ForwardingSource.java 38 @Override public Timeout timeout() { method in class:ForwardingSource
39 return delegate.timeout();
  /external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
Sink.java 60 /** Returns the timeout for this sink. */
61 Timeout timeout(); method in interface:Sink
Source.java 72 /** Returns the timeout for this source. */
73 Timeout timeout(); method in interface:Source
  /external/pdfium/fxjs/xfa/
cjx_connect.cpp 21 void CJX_Connect::timeout(CFXJSE_Value* pValue, function in class:CJX_Connect
  /external/testng/src/test/java/test/timeout/
TimeOutIntegrationTest.java 1 package test.timeout;
TimeOutTest.java 1 package test.timeout;
  /external/u-boot/drivers/misc/
fsl_sec_mon.c 19 int timeout = 10; local
35 while (timeout) {
43 timeout--;
46 if (timeout == 0) {
47 printf("SEC_MON state transition timeout.\n");
64 while (timeout) {
72 timeout--;
75 if (timeout == 0) {
76 printf("SEC_MON state transition timeout.\n");
80 timeout = 10
120 int timeout = 10; local
    [all...]
  /external/u-boot/drivers/net/phy/
teranetics.c 44 unsigned int timeout = 5 * 1000; /* 5 second timeout */ local
56 while (--timeout) {
67 if (!timeout) {
69 * A timeout is bad, but it may not be fatal, so don't
72 printf("TN2020: Timeout waiting for PHY at address %u to "
  /external/u-boot/drivers/usb/musb/
da8xx.c 19 .timeout = DA8XX_USB_OTG_TIMEOUT,
45 u32 timeout; local
58 timeout = musb_cfg.timeout;
59 while (timeout--)
  /external/u-boot/drivers/usb/ulpi/
omap-ulpi-viewport.c 23 int timeout = CONFIG_USB_ULPI_TIMEOUT; local
25 while (--timeout) {
  /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))

Completed in 1983 milliseconds

12 3 4 5 6 7 8 91011>>