HomeSort by relevance Sort by last modified time
    Searched full:timeout (Results 101 - 125 of 3462) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
hysdn_if.h 24 #define ERR_BOOTSEQ_FAIL 1006 /* 2. stage boot seq handshake timeout */
25 #define ERR_POF_TIMEOUT 1007 /* timeout waiting for card pof ready */
29 #define ERR_ASYNC_TIME 1011 /* timeout sending async data */
  /system/netd/
IdletimerController.h 27 int addInterfaceIdletimer(const char *iface, uint32_t timeout,
29 int removeInterfaceIdletimer(const char *iface, uint32_t timeout,
40 int modifyInterfaceIdletimer(IptOp op, const char *iface, uint32_t timeout,
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5BytestreamRequest.java 59 /* timeout to connect to all SOCKS5 proxies */
62 /* minimum timeout to connect to one SOCKS5 proxy */
103 * Returns the maximum timeout to connect to SOCKS5 proxies. Default is 10000ms.
106 * by the initiator until a connection is established. This timeout divided by the number of
107 * SOCKS5 proxies determines the timeout for every connection attempt.
109 * You can set the minimum timeout for establishing a connection to one SOCKS5 proxy by invoking
112 * @return the maximum timeout to connect to SOCKS5 proxies
122 * Sets the maximum timeout to connect to SOCKS5 proxies. Default is 10000ms.
125 * by the initiator until a connection is established. This timeout divided by the number of
126 * SOCKS5 proxies determines the timeout for every connection attempt.
207 int timeout = Math.max(getTotalConnectTimeout() \/ streamHosts.size(), local
    [all...]
  /frameworks/base/docs/html/tools/help/uiautomator/
Configurator.jd 72 <div class="jd-descrdiv">Gets the current timeout for waiting for an acknowledgment of generic
127 <div class="jd-descrdiv">Gets the timeout for waiting for an acknowledgement of an
146 <div class="jd-descrdiv">Gets the current timeout used for waiting for the user interface to go
165 <div class="jd-descrdiv">Gets the current timeout for waiting for a widget to become visible in
182 <span class="sympad"><a href="#setActionAcknowledgmentTimeout(long)">setActionAcknowledgmentTimeout</a></span>(long timeout)</nobr>
184 <div class="jd-descrdiv">Sets the timeout for waiting for an acknowledgment of generic uiautomator
219 <span class="sympad"><a href="#setScrollAcknowledgmentTimeout(long)">setScrollAcknowledgmentTimeout</a></span>(long timeout)</nobr>
221 <div class="jd-descrdiv">Sets the timeout for waiting for an acknowledgement of an
238 <span class="sympad"><a href="#setWaitForIdleTimeout(long)">setWaitForIdleTimeout</a></span>(long timeout)</nobr>
240 <div class="jd-descrdiv">Sets the timeout for waiting for the user interface to go into an idl
    [all...]
  /frameworks/base/core/java/android/text/method/
MultiTapKeyListener.java 123 new Timeout(content); // for its side effects
131 new Timeout(content); // for its side effects
147 new Timeout(content); // for its side effects
213 new Timeout(content); // for its side effects
215 // Set up the callback so we can remove the timeout if the
243 Timeout[] timeout = buf.getSpans(0, buf.length(), Timeout.class); local
245 for (int i = 0; i < timeout.length; i++) {
246 Timeout t = timeout[i]
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
GoTestCase.java 53 if (!listener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
63 if (!listener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
73 if (!listener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
82 if (!listener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
90 WifiP2pInfo info = mReceiverTest.waitConnectionNotice(TIMEOUT);
P2pClientPbcTestCase.java 62 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
87 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
95 Timeout t = new Timeout(TIMEOUT);
P2pClientPinTestCase.java 59 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
84 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
92 Timeout t = new Timeout(TIMEOUT);
ServReqMultiClientTestCase03.java 47 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
57 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
67 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
100 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
109 Timeout t = new Timeout(TIMEOUT);
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
TestListParser.java 55 int timeout = -1; local
57 timeout = Integer.parseInt(tokens[2]);
59 handleTest(currentCase, value, timeout);
102 private void handleTest(TestCase testCase, String test, int timeout) {
103 testCase.addTest(test, timeout);
  /external/chromium/base/test/
test_timeouts.cc 23 int timeout; local
24 base::StringToInt(string_value, &timeout);
25 *value = std::max(*value, timeout);
43 // The timeout values should increase in the order they appear in this block.
77 // The timeout values should be increasing in the right order.
  /external/mdnsresponder/mDNSPosix/
mDNSPosix.h 69 // The timeout pointer MUST NOT be NULL.
70 // Set timeout->tv_sec to 0x3FFFFFFF if you want to have effectively no timeout
71 // After calling mDNSPosixGetFDSet(), call select(nfds, &readfds, NULL, NULL, &timeout); as usual
73 extern void mDNSPosixGetFDSet(mDNS *m, int *nfds, fd_set *readfds, struct timeval *timeout);
  /external/qemu/distrib/sdl-1.2.15/src/thread/beos/
SDL_syssem.c 65 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
76 if ( timeout == SDL_MUTEX_MAXWAIT ) {
79 timeout *= 1000; /* BeOS uses a timeout in microseconds */
80 val = acquire_sem_etc(sem->id, 1, B_RELATIVE_TIMEOUT, timeout);
  /frameworks/volley/src/com/android/volley/
DefaultRetryPolicy.java 23 /** The current timeout in milliseconds. */
35 /** The default socket timeout in milliseconds */
53 * @param initialTimeoutMs The initial timeout for the policy.
64 * Returns the current timeout.
80 * Prepares for the next retry by applying a backoff to the timeout.
  /development/host/windows/usb/winusb/
adb_winusb_endpoint_object.h 89 @param[in] time_out A timeout (in milliseconds) required for this I/O to
91 timeout set for this I/O.
108 @param[in] time_out A timeout (in milliseconds) required for this I/O to
110 timeout set for this I/O.
125 /** \brief Sets read / write operation timeout.
127 @param[in] timeout Timeout value in milliseconds to use for current read
129 not timeout at all. Note that timeout that is set with this method is
134 WinUsb framework will accept a timeout parameter in WinUsb_Read/Write
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Uninterruptibles.java 34 * continues to block until the result is available or the timeout elapses,
43 // Implementation Note: As of 3-7-11, the logic for each blocking/timeout
71 * await(timeout, unit)} uninterruptibly.
74 long timeout, TimeUnit unit) {
77 long remainingNanos = unit.toNanos(timeout);
146 * {@code future.}{@link Future#get(long, TimeUnit) get(timeout, unit)}
154 Future<V> future, long timeout, TimeUnit unit)
158 long remainingNanos = unit.toNanos(timeout);
180 * timedJoin(toJoin, timeout)} uninterruptibly.
183 long timeout, TimeUnit unit)
    [all...]
  /external/iptables/iptables/
iptables-apply 13 TIMEOUT=10
52 -t | --timeout Specify the timeout in seconds (default: $TIMEOUT)
59 LONGOPTS="timeout:,version,help";
68 eval TIMEOUT=$opt
69 case "$TIMEOUT" in
72 echo "E: non-numeric timeout value." >&2
84 (-t|--timeout) OPT_STATE=SET_TIMEOUT;;
150 read -n1 -t "${TIMEOUT:-15}" ret 2>&1 ||
    [all...]
  /external/iptables/libipq/
ipq_read.3 27 .BI "ssize_t ipq_read(const struct ipq_handle *" h ", unsigned char *" buf ", size_t " len ", int " timeout ");"
50 .I timeout
51 parameter may be used to set a timeout for the operation, specified in microseconds.
55 with no timeout. A negative value causes the function to return immediately.
67 On success, a non-zero positive value is returned when no timeout
70 On success with a timeout value specified, zero is returned if no data
99 Joost Remijn implemented the timeout feature, which appeared in the 1.2.4 release of iptables.
  /external/webkit/Source/WebKit/qt/tests/benchmarks/painting/
tst_painting.cpp 30 * can return earlier on a timeout.
33 * \p false on timeout
35 static bool waitForSignal(QObject* obj, const char* signal, int timeout = 0)
40 QSignalSpy timeoutSpy(&timer, SIGNAL(timeout()));
41 if (timeout > 0) {
42 QObject::connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
44 timer.start(timeout);
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
Connection.h 83 * @param timeout Timeout in milliseconds
86 * @return -2 if no data available, i.e. timeout
88 virtual size_t readData(void *buffer, uint32_t len, int32_t timeout);
112 * @param timeout Timeout in milliseconds
116 virtual int waitData(int32_t timeout);
  /external/chromium/third_party/libjingle/source/talk/base/
taskrunner.cc 59 // the task we just started could be about to timeout --
60 // make sure our "next timeout task" is correct
130 // for any timeout changes (but don't call this
165 // the next timeout-able task hasn't changed. The logic in this function
179 // if the relevant task has a timeout, then
181 // "about to timeout" task
188 // otherwise, if the task doesn't have a timeout,
189 // and it used to be our "about to timeout" task,
191 // "about to timeout" task
208 // it has the closest timeout tim
    [all...]
  /external/v8/test/mjsunit/
mjsunit.status 56 array-constructor: PASS || TIMEOUT
59 unicode-case-overoptimization: PASS, TIMEOUT if ($arch == arm || $arch == mips)
61 # Skip long running test in debug and allow it to timeout in release mode.
62 regress/regress-524: (PASS || TIMEOUT), SKIP if $mode == debug
90 compiler/regress-stacktrace-methods: PASS, PASS || TIMEOUT if $mode == release
91 array-splice: PASS || TIMEOUT
94 mirror-object: PASS || TIMEOUT
95 string-indexof-2: PASS || TIMEOUT
98 # tests. Skipping because having them timeout takes too long on the
139 compiler/regress-stacktrace-methods: PASS, PASS || TIMEOUT if $mode == releas
    [all...]
  /frameworks/base/core/java/android/hardware/usb/
UsbDeviceConnection.java 123 * @param timeout in milliseconds
128 int index, byte[] buffer, int length, int timeout) {
129 return controlTransfer(requestType, request, value, index, buffer, 0, length, timeout);
148 * @param timeout in milliseconds
153 byte[] buffer, int offset, int length, int timeout) {
156 buffer, offset, length, timeout);
171 * @param timeout in milliseconds
176 byte[] buffer, int length, int timeout) {
177 return bulkTransfer(endpoint, buffer, 0, length, timeout);
188 * @param timeout in millisecond
    [all...]
  /external/jmdns/src/javax/jmdns/
JmDNS.java 188 * Get service information. If the information is not cached, the method will block for the given timeout until updated information is received.
190 * Usage note: If you call this method from the AWT event dispatcher thread, use a small timeout, or you will make the user interface unresponsive.
196 * @param timeout
197 * timeout in milliseconds. Typical timeout should be 5s.
200 public abstract ServiceInfo getServiceInfo(String type, String name, long timeout);
218 * Get service information. If the information is not cached, the method will block for the given timeout until updated information is received.
220 * Usage note: If you call this method from the AWT event dispatcher thread, use a small timeout, or you will make the user interface unresponsive.
226 * @param timeout
227 * timeout in milliseconds. Typical timeout should be 5s
    [all...]
  /frameworks/base/core/java/android/net/
LinkSocket.java 137 * @param timeout the timeout value in milliseconds or 0 for infinite timeout
141 * @throws SocketTimeoutException if the timeout fires
143 public void connect(String dstName, int dstPort, int timeout)
145 if (DBG) log("connect(dstName, dstPort, timeout) EX");
159 if (DBG) log("connect(dstName, dstPort, timeout) EX");
164 * by the SocketAddress with the specified timeout.
165 * @deprecated Use {@code connect(String dstName, int dstPort, int timeout)}
171 * @throws SocketTimeoutException if the timeout expire
    [all...]

Completed in 1310 milliseconds

1 2 3 45 6 7 8 91011>>