HomeSort by relevance Sort by last modified time
    Searched full:timeout (Results 1 - 25 of 1698) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dbus/dbus/
dbus-timeout.c 2 /* dbus-timeout.c DBusTimeout implementation
25 #include "dbus-timeout.h"
42 int interval; /**< Timeout interval in milliseconds. */
44 DBusTimeoutHandler handler; /**< Timeout handler. */
45 void *handler_data; /**< Timeout handler data. */
46 DBusFreeFunction free_handler_data_function; /**< Free the timeout handler data. */
50 unsigned int enabled : 1; /**< True if timeout is active. */
55 * @param interval the timeout interval in milliseconds.
56 * @param handler function to call when the timeout occurs.
67 DBusTimeout *timeout; local
    [all...]
dbus-timeout.h 2 /* dbus-timeout.h DBusTimeout internal interfaces
40 /** function to run when the timeout is handled */
47 DBusTimeout* _dbus_timeout_ref (DBusTimeout *timeout);
48 void _dbus_timeout_unref (DBusTimeout *timeout);
49 void _dbus_timeout_set_interval (DBusTimeout *timeout,
51 void _dbus_timeout_set_enabled (DBusTimeout *timeout,
63 DBusTimeout *timeout);
65 DBusTimeout *timeout);
67 DBusTimeout *timeout,
dbus-mainloop.c 91 DBusTimeout *timeout; member in struct:__anon1536
124 timeout_callback_new (DBusTimeout *timeout,
135 cb->timeout = timeout;
317 DBusTimeout *timeout,
324 tcb = timeout_callback_new (timeout, function, data, free_data_func);
340 DBusTimeout *timeout,
353 TIMEOUT_CALLBACK (this)->timeout == timeout &&
365 _dbus_warn ("could not find timeout %p function %p data %p to remove\n"
532 long timeout; local
    [all...]
  /external/bluetooth/bluez/common/
ppoll.h 8 const struct timespec *timeout, const sigset_t *sigmask)
10 if (timeout == NULL)
12 else if (timeout->tv_sec == 0)
15 return poll(fds, nfds, timeout->tv_sec * 1000);
  /external/webkit/LayoutTests/fast/dom/Geolocation/
timeout-zero-expected.txt 1 Tests that when timeout is zero (and maximumAge is too), the error callback is called immediately with code TIMEOUT.
7 PASS error.code is error.TIMEOUT
8 PASS error.message is "Timeout expired"
timeout-clear-watch-expected.txt 7 PASS error.code is error.TIMEOUT
8 PASS error.message is "Timeout expired"
  /external/bluetooth/bluez/input/
input.conf 7 # Set idle timeout (in minutes) before the connection will
8 # be disconnect (defaults to 0 for no timeout)
  /system/bluetooth/data/
input.conf 7 # Set idle timeout (in minutes) before the connection will
8 # be disconnect (defaults to 0 for no timeout)
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
timeout-zero.js 1 description("Tests that when timeout is zero (and maximumAge is too), the error callback is called immediately with code TIMEOUT.");
11 shouldBe('error.code', 'error.TIMEOUT');
12 shouldBe('error.message', '"Timeout expired"');
16 timeout: 0
timeout-clear-watch.js 11 shouldBe('error.code', 'error.TIMEOUT');
12 shouldBe('error.message', '"Timeout expired"');
16 timeout: 0
  /external/wpa_supplicant/
eloop_none.c 49 struct eloop_timeout *timeout; member in struct:eloop_data
125 struct eloop_timeout *timeout, *tmp, *prev; local
127 timeout = (struct eloop_timeout *) malloc(sizeof(*timeout));
128 if (timeout == NULL)
130 os_get_time(&timeout->time);
131 timeout->time.sec += secs;
132 timeout->time.usec += usecs;
133 while (timeout->time.usec >= 1000000) {
134 timeout->time.sec++
171 struct eloop_timeout *timeout, *prev, *next; local
379 struct eloop_timeout *timeout, *prev; local
    [all...]
eloop.c 58 struct eloop_timeout *timeout; member in struct:eloop_data
230 struct eloop_timeout *timeout, *tmp, *prev; local
232 timeout = os_malloc(sizeof(*timeout));
233 if (timeout == NULL)
235 if (os_get_time(&timeout->time) < 0) {
236 os_free(timeout);
239 timeout->time.sec += secs;
240 timeout->time.usec += usecs;
241 while (timeout->time.usec >= 1000000)
279 struct eloop_timeout *timeout, *prev, *next; local
518 struct eloop_timeout *timeout, *prev; local
    [all...]
eloop_win.c 62 struct eloop_timeout *timeout; member in struct:eloop_data
248 struct eloop_timeout *timeout, *tmp, *prev; local
250 timeout = os_malloc(sizeof(*timeout));
251 if (timeout == NULL)
253 os_get_time(&timeout->time);
254 timeout->time.sec += secs;
255 timeout->time.usec += usecs;
256 while (timeout->time.usec >= 1000000) {
257 timeout->time.sec++
294 struct eloop_timeout *timeout, *prev, *next; local
460 DWORD count, ret, timeout, err; local
573 struct eloop_timeout *timeout, *prev; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
eloop_none.c 49 struct eloop_timeout *timeout; member in struct:eloop_data
125 struct eloop_timeout *timeout, *tmp, *prev; local
127 timeout = (struct eloop_timeout *) malloc(sizeof(*timeout));
128 if (timeout == NULL)
130 os_get_time(&timeout->time);
131 timeout->time.sec += secs;
132 timeout->time.usec += usecs;
133 while (timeout->time.usec >= 1000000) {
134 timeout->time.sec++
171 struct eloop_timeout *timeout, *prev, *next; local
379 struct eloop_timeout *timeout, *prev; local
    [all...]
eloop_win.c 62 struct eloop_timeout *timeout; member in struct:eloop_data
248 struct eloop_timeout *timeout, *tmp, *prev; local
250 timeout = os_malloc(sizeof(*timeout));
251 if (timeout == NULL)
253 os_get_time(&timeout->time);
254 timeout->time.sec += secs;
255 timeout->time.usec += usecs;
256 while (timeout->time.usec >= 1000000) {
257 timeout->time.sec++
294 struct eloop_timeout *timeout, *prev, *next; local
460 DWORD count, ret, timeout, err; local
572 struct eloop_timeout *timeout, *prev; local
    [all...]
eloop.c 58 struct eloop_timeout *timeout; member in struct:eloop_data
240 struct eloop_timeout *timeout, *tmp, *prev; local
242 timeout = os_malloc(sizeof(*timeout));
243 if (timeout == NULL)
245 if (os_get_time(&timeout->time) < 0) {
246 os_free(timeout);
249 timeout->time.sec += secs;
250 timeout->time.usec += usecs;
251 while (timeout->time.usec >= 1000000)
289 struct eloop_timeout *timeout, *prev, *next; local
528 struct eloop_timeout *timeout, *prev; local
    [all...]
  /external/webkit/WebCore/manual-tests/
timeout-test.html 3 <title>10m10s Timeout Test</title>
6 To run this test, both timeout-test.html and timeout-test.php must be served over http.<br>
9 <form action="timeout-test.php" method="post">
  /packages/apps/Stk/src/com/android/stk/
StkApp.java 35 // UI timeout, 30 seconds - used for display dialog and activities.
38 // Tone default timeout - 2 seconds
48 int timeout = 0; local
52 timeout = 1000 * 60;
55 timeout = 1000 * 10;
59 timeout = 1000;
62 timeout *= duration.timeInterval;
64 return timeout;
  /cts/tests/src/android/view/animation/cts/
DelayedCheck.java 29 public DelayedCheck(long timeout) {
30 mTimeout = timeout;
36 long timeout = mTimeout; local
37 while (timeout > 0) {
48 timeout -= TIME_SLICE;
51 Assert.fail("unexpected timeout");
  /hardware/qcom/gps/loc_api/libloc_api-rpc/gen-6356/
loc_api_clnt.c 26 /* Default timeout can be changed using clnt_control() */
27 static struct timeval TIMEOUT = { 25, 0 };
35 TIMEOUT));
44 TIMEOUT));
53 TIMEOUT));
62 TIMEOUT));
71 TIMEOUT));
80 TIMEOUT));
89 TIMEOUT));
98 TIMEOUT));
    [all...]
  /external/dbus/bus/
expirelist.c 28 #include <dbus/dbus-timeout.h>
33 call_timeout_callback (DBusTimeout *timeout,
37 dbus_timeout_handle (timeout);
57 list->timeout = _dbus_timeout_new (100, /* irrelevant */
60 if (list->timeout == NULL)
63 _dbus_timeout_set_enabled (list->timeout, FALSE);
66 list->timeout,
73 if (list->timeout)
74 _dbus_timeout_unref (list->timeout);
86 _dbus_loop_remove_timeout (list->loop, list->timeout,
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
TimeoutException.java 11 * operations for which a timeout is specified need a means to
12 * indicate that the timeout has occurred. For many such operations it
13 * is possible to return a value that indicates timeout; when that is
  /external/mtpd/
mtpd.h 48 * timeout intervals are in milliseconds, where zero means forever. To indicate
55 /* Connect to the server and return the next timeout interval. */
57 /* Process the incoming packet and return the next timeout interval. */
59 /* Handle the timeout event and return the next timeout interval. */
60 int (*timeout)(); member in struct:protocol
  /external/webkit/WebCore/manual-tests/inspector/
forzen-ui-while-paused.html 3 var timeout = setTimeout(function() { alert("This should not happen. If you do see this alert, then timers on the page are firing while paused!") }, 0);
5 clearTimeout(timeout);
  /external/bluetooth/glib/glib/
gpoll.c 89 extern gint poll (struct pollfd *fds, guint nfsd, gint timeout);
96 * @timeout: amount of time to wait, in milliseconds, or -1 to wait forever
125 gint timeout)
127 return poll ((struct pollfd *)fds, nfds, timeout);
140 gint timeout)
152 g_print (" MsgWaitForMultipleObjectsEx(%d, %d)\n", nhandles, timeout);
154 ready = MsgWaitForMultipleObjectsEx (nhandles, handles, timeout,
166 /* No handles to wait for, just the timeout */
167 if (timeout == INFINITE)
171 SleepEx (timeout, TRUE)
    [all...]

Completed in 4321 milliseconds

1 2 3 4 5 6 7 8 91011>>