Searched defs:timeout (Results 76 - 100 of 644) sorted by relevance

1234567891011>>

/external/sl4a/Utils/src/com/googlecode/android_scripting/future/
H A DFutureResult.java50 public T get(long timeout, TimeUnit unit) throws InterruptedException { argument
51 mLatch.await(timeout, unit);
/external/strace/
H A Dfutex.c53 const long timeout = tcp->u_arg[3]; local
67 print_timespec(tcp, timeout);
71 print_timespec(tcp, timeout);
102 print_timespec(tcp, timeout);
111 tprintf(", %lx, %lx, %x", timeout, uaddr2, val3);
/external/testng/src/main/java/org/testng/internal/thread/
H A DExecutorAdapter.java39 public boolean awaitTermination(long timeout) { argument
42 result= super.awaitTermination(timeout, TimeUnit.MILLISECONDS);
H A DIExecutor.java13 boolean awaitTermination(long timeout); argument
/external/testng/src/main/java/org/testng/remote/adapter/
H A DDefaultMastertAdapter.java80 public void awaitTermination(long timeout) throws InterruptedException argument
H A DIMasterAdapter.java36 * @param timeout the maximum time to wait for all the suites to return a result.
39 public void awaitTermination(long timeout) throws InterruptedException; argument
H A DIWorkerAdapter.java28 * @param timeout the maximum time to wait for the next suite.
29 * @return the next suite avaliable or <code>null</code> if the timeout has reached.
33 XmlSuite getSuite( long timeout) throws InterruptedException, IOException; argument
/external/testng/src/test/java/test/timeout/
H A DTimeOutFromXmlTest.java1 package test.timeout;
82 String file = "src/test/java/test/timeout/issue575.xml";
H A DTimeOutTest.java1 package test.timeout;
/external/toybox/toys/other/
H A Dnbd_client.c28 -t timeout in seconds
43 unsigned long timeout = 0; local
76 if (timeout && ioctl(nbd, NBD_SET_TIMEOUT, timeout)<0) break;
/external/tpm2/
H A DPolicySecret_fp.h22 TPM2B_TIMEOUT timeout; member in struct:__anon17800
H A DPolicySigned_fp.h23 TPM2B_TIMEOUT timeout; member in struct:__anon17802
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
H A Dp2p_disconnect.py40 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))
H A Dp2p_flush.py40 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))
H A Dp2p_listen.py17 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
141 timeout
[all...]
/external/apache-http/src/org/apache/http/conn/params/
H A DConnManagerParams.java61 * Returns the timeout in milliseconds used when retrieving a
65 * @return timeout in milliseconds.
75 * Sets the timeout in milliseconds used when retrieving a
79 * @param timeout the timeout in milliseconds
81 public static void setTimeout(final HttpParams params, long timeout) { argument
85 params.setLongParameter(TIMEOUT, timeout);
/external/apache-http/src/org/apache/http/impl/conn/
H A DLoggingSessionInputBuffer.java72 public boolean isDataAvailable(int timeout) throws IOException { argument
73 return this.in.isDataAvailable(timeout);
/external/autotest/client/site_tests/network_SwitchCarrier/
H A Dnetwork_SwitchCarrier.py50 def timeout(self): member in class:network_SwitchCarrier
85 gobject.timeout_add(timeout_secs * 1000, self.timeout)
/external/curl/docs/examples/
H A Dimap-multi.c85 struct timeval timeout; local
100 /* Set a suitable timeout to play around with */
101 timeout.tv_sec = 1;
102 timeout.tv_usec = 0;
106 timeout.tv_sec = curl_timeo / 1000;
107 if(timeout.tv_sec > 1)
108 timeout.tv_sec = 1;
110 timeout.tv_usec = (curl_timeo % 1000) * 1000;
139 /* Note that on some platforms 'timeout' may be modified by select().
141 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
[all...]
H A Dmulti-app.c74 struct timeval timeout; local
89 /* set a suitable timeout to play around with */
90 timeout.tv_sec = 1;
91 timeout.tv_usec = 0;
95 timeout.tv_sec = curl_timeo / 1000;
96 if(timeout.tv_sec > 1)
97 timeout.tv_sec = 1;
99 timeout.tv_usec = (curl_timeo % 1000) * 1000;
128 /* Note that on some platforms 'timeout' may be modified by select().
130 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
[all...]
H A Dpop3-multi.c85 struct timeval timeout; local
100 /* Set a suitable timeout to play around with */
101 timeout.tv_sec = 1;
102 timeout.tv_usec = 0;
106 timeout.tv_sec = curl_timeo / 1000;
107 if(timeout.tv_sec > 1)
108 timeout.tv_sec = 1;
110 timeout.tv_usec = (curl_timeo % 1000) * 1000;
139 /* Note that on some platforms 'timeout' may be modified by select().
141 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
[all...]
/external/curl/tests/libtest/
H A Dlib1501.c76 struct timeval timeout; local
85 timeout.tv_sec = 0;
86 timeout.tv_usec = 100000L; /* 100 ms */
96 select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
H A Dlib591.c83 /* server connection timeout */
96 long timeout = -99; local
114 multi_timeout(multi, &timeout);
116 /* At this point, timeout is guaranteed to be greater or equal than -1. */
118 if(timeout != -1L) {
119 int itimeout = (timeout > (long)INT_MAX) ? INT_MAX : (int)timeout;
H A Dlib597.c97 long timeout = -99; local
115 multi_timeout(multi, &timeout);
117 /* At this point, timeout is guaranteed to be greater or equal than -1. */
119 if(timeout != -1L) {
120 int itimeout = (timeout > (long)INT_MAX) ? INT_MAX : (int)timeout;
/external/curl/tests/unit/
H A Dunit1303.c50 #define TIMEOUTS(x,y) data->set.timeout = x; data->set.connecttimeout = y
74 long timeout; variable
81 {BASE + 10, 0, 10000, 8000, FALSE, -1, "timeout is -1, expired"},
87 {BASE + 8, 0, 10000, 8000, TRUE, -1, "timeout is -1, expired"},
90 /* no connect timeout set, not connecting */
93 {BASE + 10, 0, 10000, 0, FALSE, -1, "timeout is -1, expired"},
96 /* no connect timeout set, connecting */
99 {BASE + 10, 0, 10000, 0, FALSE, -1, "timeout is -1, expired"},
102 /* only connect timeout set, not connecting */
103 {BASE + 4, 0, 0, 10000, FALSE, 0, "no timeout activ
[all...]

Completed in 5302 milliseconds

1234567891011>>