/external/nist-sip/java/javax/sip/ |
TimeoutEvent.java | 4 private Timeout mTimeout; 7 Timeout timeout) { 9 mTimeout = timeout; 13 Timeout timeout) { 15 mTimeout = timeout; 18 public Timeout getTimeout() {
|
Timeout.java | 3 public enum Timeout {
|
/external/dbus/dbus/ |
dbus-timeout.c | 2 /* dbus-timeout.c DBusTimeout implementation 26 #include "dbus-timeout.h" 43 int interval; /**< Timeout interval in milliseconds. */ 45 DBusTimeoutHandler handler; /**< Timeout handler. */ 46 void *handler_data; /**< Timeout handler data. */ 47 DBusFreeFunction free_handler_data_function; /**< Free the timeout handler data. */ 51 unsigned int enabled : 1; /**< True if timeout is active. */ 56 * @param interval the timeout interval in milliseconds. 57 * @param handler function to call when the timeout occurs. 68 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,
|
/external/bluetooth/bluez/src/ |
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. 6 PASS error.code is error.TIMEOUT 7 PASS error.message is "Timeout expired"
|
/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/ |
timeout-zero.js | 1 description("Tests that when timeout is zero (and maximumAge is too), the error callback is called immediately with code TIMEOUT."); 12 shouldBe('error.code', 'error.TIMEOUT'); 13 shouldBe('error.message', '"Timeout expired"'); 16 timeout: 0
|
timeout-clear-watch.js | 12 shouldBe('error.code', 'error.TIMEOUT'); 13 shouldBe('error.message', '"Timeout expired"'); 17 timeout: 0
|
/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)
|
/external/llvm/test/FrontendC/ |
2003-11-04-OutOfMemory.c | 3 void schedule_timeout(signed long timeout) 5 switch (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)
|
/hardware/qcom/gps/loc_api/libloc_api-rpc/gen-1240/ |
loc_api_clnt.c | 9 /* Default timeout can be changed using clnt_control() */ 10 static struct timeval TIMEOUT = { 25, 0 }; 18 TIMEOUT)); 27 TIMEOUT)); 36 TIMEOUT)); 45 TIMEOUT)); 54 TIMEOUT)); 63 TIMEOUT)); 72 TIMEOUT)); 81 TIMEOUT)); [all...] |
/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...] |
/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...] |
/external/wpa_supplicant_8/src/utils/ |
eloop_none.c | 47 struct eloop_timeout *timeout; member in struct:eloop_data 122 struct eloop_timeout *timeout, *tmp, *prev; local 124 timeout = (struct eloop_timeout *) malloc(sizeof(*timeout)); 125 if (timeout == NULL) 127 os_get_time(&timeout->time); 128 timeout->time.sec += secs; 129 timeout->time.usec += usecs; 130 while (timeout->time.usec >= 1000000) { 131 timeout->time.sec++ 168 struct eloop_timeout *timeout, *prev, *next; local 376 struct eloop_timeout *timeout, *prev; local [all...] |
eloop.c | 64 struct dl_list timeout; member in struct:eloop_data 124 dl_list_init(&eloop.timeout); 302 struct eloop_timeout *timeout, *tmp; local 305 timeout = os_zalloc(sizeof(*timeout)); 306 if (timeout == NULL) 308 if (os_get_time(&timeout->time) < 0) { 309 os_free(timeout); 312 now_sec = timeout->time.sec; 313 timeout->time.sec += secs 361 struct eloop_timeout *timeout, *prev; local 519 struct eloop_timeout *timeout; local 582 struct eloop_timeout *timeout, *prev; local [all...] |
eloop_win.c | 60 struct eloop_timeout *timeout; member in struct:eloop_data 245 struct eloop_timeout *timeout, *tmp, *prev; local 248 timeout = os_malloc(sizeof(*timeout)); 249 if (timeout == NULL) 251 os_get_time(&timeout->time); 252 now_sec = timeout->time.sec; 253 timeout->time.sec += secs; 254 if (timeout->time.sec < now_sec) { 256 * Integer overflow - assume long enough timeout to be assume 303 struct eloop_timeout *timeout, *prev, *next; local 467 DWORD count, ret, timeout, err; local 579 struct eloop_timeout *timeout, *prev; local [all...] |
/hardware/qcom/gps/loc_api/libloc_api-rpc/gen-3200/ |
loc_api_clnt.c | 9 /* Default timeout can be changed using clnt_control() */ 10 static struct timeval TIMEOUT = { 25, 0 }; 18 TIMEOUT)); 27 TIMEOUT)); 36 TIMEOUT)); 45 TIMEOUT)); 54 TIMEOUT)); 63 TIMEOUT)); 72 TIMEOUT)); 81 TIMEOUT)); [all...] |
/external/webkit/Source/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">
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
if_slip.h | 22 #define SIOCSKEEPALIVE (SIOCDEVPRIVATE) /* Set keepalive timeout in sec */ 23 #define SIOCGKEEPALIVE (SIOCDEVPRIVATE+1) /* Get keepalive timeout */ 24 #define SIOCSOUTFILL (SIOCDEVPRIVATE+2) /* Set outfill timeout */ 25 #define SIOCGOUTFILL (SIOCDEVPRIVATE+3) /* Get outfill timeout */
|
/external/chromium/base/test/ |
test_switches.cc | 8 const char switches::kLiveOperationTimeout[] = "live-operation-timeout"; 12 const char switches::kTestLargeTimeout[] = "test-large-timeout"; 13 const char switches::kTestTinyTimeout[] = "test-tiny-timeout"; 14 const char switches::kUiTestActionTimeout[] = "ui-test-action-timeout"; 15 const char switches::kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout"; 16 const char switches::kUiTestTerminateTimeout[] = "ui-test-terminate-timeout"; 17 const char switches::kUiTestTimeout[] = "test-timeout";
|
test_timeouts.h | 18 // Timeout for actions that are expected to finish "almost instantly". 21 // Timeout to wait for something to happen. If you are not sure 22 // which timeout to use, this is the one you want. 25 // Timeout longer than the above, but still suitable to use 26 // multiple times in a single test. Use if the timeout above 30 // Timeout for a large test that may take a few minutes to run. 33 // Timeout for a huge test (like running a layout test inside the browser). 38 // Timeout to wait for a process to terminate. 43 // Timeout to wait for a live operation to complete. Used by tests that access
|
/external/chromium/net/socket/ |
client_socket_pool.cc | 11 // TODO(ziadh): Change this timeout after getting histogram data on how long it
25 void ClientSocketPool::set_unused_idle_socket_timeout(int timeout) {
26 g_unused_idle_socket_timeout = timeout;
|
/external/webkit/Source/WebCore/manual-tests/resources/ |
load-deferrer-script-element.js | 3 // Use a big timeout value to ensure that error messages do not show up.
|