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

1 2 3 45 6 7 8 91011>>

  /external/qemu/
iolooper-select.c 194 // Indicates timeout
232 int64_t timeout = deadline - iolooper_now(); local
234 /* If the deadline has passed, set the timeout to 0, this allows us
236 if (timeout < 0)
237 timeout = 0;
239 return iolooper_wait(iol, timeout);
  /external/valgrind/main/coregrind/m_mach/
mach_msg.c 56 mach_msg_timeout_t timeout,
60 mach_msg(msg, option, send_size, rcv_size, rcv_name, timeout, notify)
66 mach_msg_timeout_t timeout;
85 timeout, notify);
94 timeout, notify);
101 timeout, notify);
  /frameworks/base/core/java/android/os/
ConditionVariable.java 107 * timeout milliseconds have passed.
112 * @param timeout the minimum time to wait in milliseconds.
115 * because of the timeout.
117 public boolean block(long timeout)
122 if (timeout != 0) {
125 long end = now + timeout;
  /frameworks/base/core/java/com/android/server/
ResettableTimeout.java 24 * Utility class that you can call on with a timeout, and get called back
25 * after a given time, dealing correctly with restarting the timeout.
49 * <p>3. At the timeout, calls off()<p>
50 * <p>If you call this again, the timeout is reset to the new one</p>
73 // poke the thread so it gets the new timeout.
81 * Cancel the timeout and call off now.
  /packages/apps/Stk/src/com/android/stk/
ToneDialog.java 59 // Message id to signal tone duration timeout.
88 int timeout = StkApp.calculateDurationInMilis(settings.duration); local
89 if (timeout == 0) {
90 timeout = StkApp.TONE_DFEAULT_TIMEOUT;
92 mToneStopper.sendEmptyMessageDelayed(MSG_ID_STOP_TONE, timeout);
94 mVibrator.vibrate(timeout);
  /bionic/libc/private/
bionic_futex.h 33 extern int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout);
37 extern int __futex_syscall4(volatile void *ftx, int op, int val, const struct timespec *timeout);
55 extern int __futex_wait_ex(volatile void *ftx, int pshared, int val, const struct timespec *timeout);
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
TestSummaryXmlTest.java 33 "<Summary failed=\"1\" notExecuted=\"2\" pass=\"3\" timeout=\"4\"/>" +
38 "<Foo failed=\"1\" notExecuted=\"2\" pass=\"3\" timeout=\"4\"/>" +
53 // expect failed and timeout to be summed
  /development/host/windows/usb/api/
adb_endpoint_object.h 69 @param[in] time_out A timeout (in milliseconds) required for this I/O to
71 timeout set for this I/O.
88 @param[in] time_out A timeout (in milliseconds) required for this I/O to
90 timeout set for this I/O.
121 @param[in] time_out A timeout (in milliseconds) required for this I/O to
123 timeout set for this I/O.
141 @param[in] time_out A timeout (in milliseconds) required for this I/O to
143 timeout set for this I/O.
158 @param[in] time_out A timeout (in milliseconds) required for this I/O to
160 timeout set for this I/O.
    [all...]
  /external/bluetooth/bluez/tools/
l2ping.8 13 .IR timeout \|]
46 .BI \-t " timeout"
48 .I timeout
  /external/dbus/dbus/
dbus-mainloop.h 36 typedef void (* DBusTimeoutFunction) (DBusTimeout *timeout,
52 DBusTimeout *timeout,
57 DBusTimeout *timeout,
  /external/nist-sip/java/gov/nist/javax/sip/
ClientTransactionExt.java 8 import javax.sip.Timeout;
16 * listener will get a Timeout.RETRANSMIT event on each retransmission.
25 * Send a transaction timeout event to the application if Tx is still in Calling state in the
DialogTimeoutEvent.java 37 * timeout.
62 * The reason for the Dialog Timeout Event being delivered to the application.
64 * @return the reason for the timeout event.
  /external/wpa_supplicant_8/src/ap/
wps_hostapd.h 26 const char *uuid, const char *pin, int timeout);
34 const char * hostapd_wps_ap_pin_random(struct hostapd_data *hapd, int timeout);
37 int timeout);
  /frameworks/base/libs/rs/
rsLocklessFifo.h 37 void setTimoutCallback(void (*)(void *), void *, uint64_t timeout);
62 bool wait(uint64_t timeout = 0);
64 const void * get(uint32_t *command, uint32_t *bytesData, uint64_t timeout = 0);
  /system/core/libcutils/
abort_socket.c 60 socklen_t addrlen, int timeout) {
81 ret = poll(pfd, 2, timeout);
87 /* timeout */
120 socklen_t *addrlen, int timeout) {
133 ret = poll(pfd, 2, timeout);
139 /* timeout */
166 int asocket_read(struct asocket *s, void *buf, size_t count, int timeout) {
178 ret = poll(pfd, 2, timeout);
184 /* timeout */
212 int timeout) {
    [all...]
  /bionic/libc/arch-sh/bionic/
atomics_sh.c 92 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout)
94 return futex(ftx, FUTEX_WAIT, val, (void *)timeout, NULL, 0);
107 int __futex_syscall4(volative void *ftx, int op, int val, const struct timespec *timeout)
109 return futex(ftx, op, val, (void *)timeout, NULL, 0);
  /external/apache-http/src/org/apache/http/
HttpConnection.java 69 * that by attempting a read with a very small timeout. Thus this
80 * Sets the socket timeout value.
82 * @param timeout timeout value in milliseconds
84 void setSocketTimeout(int timeout);
87 * Returns the socket timeout value.
89 * @return positive value in milliseconds if a timeout is set,
90 * <code>0</code> if timeout is disabled or <code>-1</code> if
91 * timeout is undefined.
  /external/apache-http/src/org/apache/http/conn/params/
ConnManagerParams.java 56 * Returns the timeout in milliseconds used when retrieving a
60 * @return timeout in milliseconds.
66 return params.getLongParameter(TIMEOUT, 0);
70 * Sets the timeout in milliseconds used when retrieving a
74 * @param timeout the timeout in milliseconds
76 public static void setTimeout(final HttpParams params, long timeout) {
80 params.setLongParameter(TIMEOUT, timeout);
  /external/bluetooth/bluez/compat/
msdun.c 49 static int timeout; variable
111 timeout = timeo;
114 timeout /= retry;
144 alarm(timeout);
  /external/dhcpcd/dhcpcd-hooks/
20-dns.conf 30 BOUND|INFORM|REBIND|REBOOT|RENEW|TIMEOUT) set_dns_props;;
  /external/e2fsprogs/misc/
uuidd.8.in 23 .I timeout
83 .BI \-T " timeout"
84 Specify a timeout for uuidd. If specified, then uuidd will exit after
85 .I timeout
  /external/qemu/android/
sync-utils.c 54 syncsocket_connect(int fd, SockAddress* sockaddr, int timeout)
74 connect_status = iolooper_wait(looper, timeout);
199 syncsocket_read(SyncSocket* ssocket, void* buf, size_t size, int timeout)
201 return syncsocket_read_absolute(ssocket, buf, size, iolooper_now() + timeout);
223 // Timeout.
252 syncsocket_write(SyncSocket* ssocket, const void* buf, size_t size, int timeout)
254 return syncsocket_write_absolute(ssocket, buf, size, iolooper_now() + timeout);
283 syncsocket_read_line(SyncSocket* ssocket, char* buffer, size_t size, int timeout)
286 iolooper_now() + timeout);
  /external/v8/test/mjsunit/
mjsunit.status 48 array-constructor: PASS || TIMEOUT
51 unicode-case-overoptimization: PASS, TIMEOUT if ($arch == arm)
53 # Skip long running test in debug and allow it to timeout in release mode.
54 regress/regress-524: (PASS || TIMEOUT), SKIP if $mode == debug
73 compiler/regress-stacktrace-methods: PASS, PASS || TIMEOUT if $mode == release
74 array-splice: PASS || TIMEOUT
77 mirror-object: PASS || TIMEOUT
78 string-indexof-2: PASS || TIMEOUT
81 # tests. Skipping because having them timeout takes too long on the
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
error.js 23 shouldBe('error.TIMEOUT', '3');
  /external/webkit/LayoutTests/fast/dom/Geolocation/
timeout-clear-watch.html 10 <script src="script-tests/timeout-clear-watch.js"></script>

Completed in 759 milliseconds

1 2 3 45 6 7 8 91011>>