/external/webkit/LayoutTests/fast/dom/Geolocation/ |
timeout-clear-watch-expected.txt | 6 PASS error.code is error.TIMEOUT 7 PASS error.message is "Timeout expired"
|
/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");
|
/external/chromium/third_party/libevent/sample/ |
time-test.c | 36 struct event *timeout = arg; local 45 event_add(timeout, &tv); 51 struct event timeout; local 58 evtimer_set(&timeout, timeout_cb, &timeout); 62 event_add(&timeout, &tv);
|
/external/wpa_supplicant/ |
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_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...] |
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
BluetoothDiscoverableEnabler.java | 48 // Use the same preference key for discoverable timeout as the old ListPreference. 130 int timeout = getDiscoverableTimeout(); local 131 mLocalAdapter.setDiscoverableTimeout(timeout); 133 long endTimestamp = System.currentTimeMillis() + timeout * 1000L; 136 mLocalAdapter.setScanMode(BluetoothAdapter.SCAN_MODE_CONNECTABLE_DISCOVERABLE, timeout); 143 private void updateTimerDisplay(int timeout) { 147 String textTimeout = formatTimeRemaining(timeout); 153 private static String formatTimeRemaining(int timeout) { 155 int min = timeout / 60; 157 int sec = timeout - (min * 60) 198 int timeout = SystemProperties.getInt(SYSTEM_PROPERTY_DISCOVERABLE_TIMEOUT, -1); local 218 int timeout = getDiscoverableTimeout(); local [all...] |
/external/dbus/bus/ |
expirelist.c | 29 #include <dbus/dbus-timeout.h> 34 DBusTimeout *timeout; member in struct:BusExpireList 44 call_timeout_callback (DBusTimeout *timeout, 48 dbus_timeout_handle (timeout); 68 list->timeout = _dbus_timeout_new (100, /* irrelevant */ 71 if (list->timeout == NULL) 74 _dbus_timeout_set_enabled (list->timeout, FALSE); 77 list->timeout, 84 if (list->timeout) 85 _dbus_timeout_unref (list->timeout); [all...] |
/external/dbus/dbus/ |
dbus-mainloop.c | 92 DBusTimeout *timeout; member in struct:__anon5187 125 timeout_callback_new (DBusTimeout *timeout, 136 cb->timeout = timeout; 318 DBusTimeout *timeout, 325 tcb = timeout_callback_new (timeout, function, data, free_data_func); 341 DBusTimeout *timeout, 354 TIMEOUT_CALLBACK (this)->timeout == timeout && 366 _dbus_warn ("could not find timeout %p function %p data %p to remove\n" 533 long timeout; local [all...] |
/external/webkit/LayoutTests/fast/dom/beforeload/ |
remove-flash-in-beforeload-listener.html | 12 var timeout = 100; 41 setTimeout("checkObjectRemoval()", timeout); 44 setTimeout("checkObjectRemoval()", timeout);
|
remove-image-in-beforeload-listener.html | 12 var timeout = 100; 41 setTimeout("checkObjectRemoval()", timeout); 44 setTimeout("checkObjectRemoval()", timeout);
|
remove-video-in-beforeload-listener.html | 12 var timeout = 100; 41 setTimeout("checkObjectRemoval()", timeout); 44 setTimeout("checkObjectRemoval()", timeout);
|
/libcore/luni/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/apache-harmony/support/src/test/java/tests/support/ |
Support_HttpServerSocket.java | 34 private int timeout = 8000; field in class:Support_HttpServerSocket 48 instance.setSoTimeout(timeout); 55 * timeout for the server. 57 public void setTimeout(int timeout) { 58 this.timeout = timeout;
|
/external/mtpd/ |
mtpd.h | 47 * timeout intervals are in milliseconds, where zero means forever. To indicate 56 /* Connect to the server and return the next timeout interval. */ 58 /* Process the incoming packet and return the next timeout interval. */ 60 /* Handle the timeout event and return the next timeout interval. */ 61 int (*timeout)(); member in struct:protocol
|
/external/iptables/extensions/ |
libxt_IDLETIMER.c | 34 {.name = "timeout", .id = O_TIMEOUT, .type = XTTYPE_UINT32, 35 .flags = XTOPT_MAND | XTOPT_PUT, XTOPT_POINTER(s, timeout)}, 46 " --timeout time Timeout until the notification is sent (in seconds)\n" 58 printf(" timeout:%u", info->timeout); 68 printf(" --timeout %u", info->timeout);
|
/external/nist-sip/java/javax/sip/header/ |
SubscriptionStateHeader.java | 14 String TIMEOUT = "Timeout";
|
/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/ |
timeout.js | 1 description("Tests that when timeout is non-zero, the success callback is called as expected."); 26 timeout: 1000
|
/external/webkit/Source/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...] |
/packages/apps/Email/src/com/android/email/ |
Throttle.java | 30 * When {@link #onEvent()} is called, it calls the callback in a certain timeout later. 31 * Initially {@link #mMinTimeout} is used as the timeout, but if it gets multiple {@link #onEvent} 32 * calls in a certain amount of time, it extends the timeout, until it reaches {@link #mMaxTimeout}. 57 /** Minimum (default) timeout, in milliseconds. */ 60 /** Max timeout, in milliseconds. */ 63 /** Current timeout, in milliseconds. */ 71 /** Constructor with default timeout */ 76 /** Constructor that takes custom timeout */ 121 if (DEBUG) debugLog("Timeout extended " + mTimeout); 124 if (DEBUG) debugLog("Timeout reset to " + mTimeout) [all...] |
/external/apache-http/src/org/apache/http/params/ |
HttpConnectionParams.java | 56 * Returns the default socket timeout (<tt>SO_TIMEOUT</tt>) in milliseconds which is the 57 * timeout for waiting for data. A timeout value of zero is interpreted as an infinite 58 * timeout. This value is used when no socket timeout is set in the 61 * @return timeout in milliseconds 71 * Sets the default socket timeout (<tt>SO_TIMEOUT</tt>) in milliseconds which is the 72 * timeout for waiting for data. A timeout value of zero is interpreted as an infinite 73 * timeout. This value is used when no socket timeout is set in the [all...] |
/external/dbus/test/name-test/ |
.gitignore | 7 test-pending-call-timeout
|
/external/llvm/utils/lit/ |
TODO | 9 - Support a timeout / ulimit.
|