/external/webkit/LayoutTests/fast/dom/Geolocation/ |
timeout-expected.txt | 1 Tests that when timeout is non-zero, the success callback is called as expected.
|
error-expected.txt | 11 PASS error.TIMEOUT is 3
|
/external/webkit/Source/WebKit/qt/tests/benchmarks/loading/ |
tst_loading.cpp | 29 * can return earlier on a timeout. 32 * \p false on timeout 34 static bool waitForSignal(QObject* obj, const char* signal, int timeout = 0) 39 QSignalSpy timeoutSpy(&timer, SIGNAL(timeout())); 40 if (timeout > 0) { 41 QObject::connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit())); 43 timer.start(timeout);
|
/external/webkit/Source/WebKit/qt/tests/ |
util.h | 32 * can return earlier on a timeout. 35 * \p false on timeout 37 static bool waitForSignal(QObject* obj, const char* signal, int timeout = 10000) 42 QSignalSpy timeoutSpy(&timer, SIGNAL(timeout())); 43 if (timeout > 0) { 44 QObject::connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit())); 46 timer.start(timeout);
|
/external/webkit/Source/WebKit2/UIProcess/API/qt/tests/ |
util.h | 32 * can return earlier on a timeout. 35 * \p false on timeout 37 static bool waitForSignal(QObject* obj, const char* signal, int timeout = 10000) 42 QSignalSpy timeoutSpy(&timer, SIGNAL(timeout())); 43 if (timeout > 0) { 44 QObject::connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit())); 46 timer.start(timeout);
|
/external/dbus/cmake/test/name-test/ |
CMakeLists.txt | 11 add_executable(test-pending-call-timeout ${NAMEtest-DIR}/test-pending-call-timeout.c) 12 target_link_libraries(test-pending-call-timeout ${DBUS_INTERNAL_LIBRARIES}) 13 ADD_TEST(test-pending-call-timeout ${EXECUTABLE_OUTPUT_PATH}/test-pending-call-timeout)
|
/external/iptables/iptables/ |
iptables-apply.8 | 18 case, the script rolls back to the previous ruleset after the timeout 19 expired. The timeout can be set with \fB\-t\fP. 25 \fB\-t\fP \fIseconds\fR, \fB\-\-timeout\fP \fIseconds\fR 26 Sets the timeout after which the script will roll back to the previous
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
test_input.py | 35 def __init__(self, filename, timeout): 39 timeout: Timeout in msecs the driver should use while running the test 43 self.timeout = timeout
|
/external/bluetooth/bluez/gdbus/ |
mainloop.c | 45 DBusTimeout *timeout; member in struct:timeout_handler 191 if (!dbus_timeout_get_enabled(handler->timeout)) 194 dbus_timeout_handle(handler->timeout); 211 static dbus_bool_t add_timeout(DBusTimeout *timeout, void *data) 213 int interval = dbus_timeout_get_interval(timeout); 216 if (!dbus_timeout_get_enabled(timeout)) 221 handler->timeout = timeout; 223 dbus_timeout_set_data(timeout, handler, timeout_handler_free); 231 static void remove_timeout(DBusTimeout *timeout, void *data [all...] |
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/ |
SelectorTest.java | 55 NULL, TIMEOUT, NOW 244 assert_select_OP_ACCEPT(SelectType.TIMEOUT, 0); 245 assert_select_OP_CONNECT(SelectType.TIMEOUT, 0); 246 assert_select_OP_READ(SelectType.TIMEOUT, 0); 247 assert_select_OP_WRITE(SelectType.TIMEOUT, 0); 249 assert_select_OP_ACCEPT(SelectType.TIMEOUT, WAIT_TIME); 250 assert_select_OP_CONNECT(SelectType.TIMEOUT, WAIT_TIME); 251 assert_select_OP_READ(SelectType.TIMEOUT, WAIT_TIME); 252 assert_select_OP_WRITE(SelectType.TIMEOUT, WAIT_TIME); 259 assert_select_SelectorClosed(SelectType.TIMEOUT, 0) [all...] |
/external/dbus/test/ |
test-utils.c | 42 connection_timeout_callback (DBusTimeout *timeout, 46 dbus_timeout_handle (timeout); 50 add_timeout (DBusTimeout *timeout, 56 timeout, connection_timeout_callback, cd, NULL); 60 remove_timeout (DBusTimeout *timeout, 66 timeout, connection_timeout_callback, cd); 187 _dbus_assert_not_reached ("setting timeout functions to NULL failed"); 263 server_timeout_callback (DBusTimeout *timeout, 267 dbus_timeout_handle (timeout); 271 add_server_timeout (DBusTimeout *timeout, [all...] |
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_common.c | 165 DBusTimeout *timeout = sock_ctx; local 166 dbus_timeout_handle(timeout); 170 static dbus_bool_t add_timeout(DBusTimeout *timeout, void *data) 173 if (!dbus_timeout_get_enabled(timeout)) 176 eloop_register_timeout(0, dbus_timeout_get_interval(timeout) * 1000, 177 process_timeout, priv, timeout); 179 dbus_timeout_set_data(timeout, priv, NULL); 185 static void remove_timeout(DBusTimeout *timeout, void *data) 188 eloop_cancel_timeout(process_timeout, priv, timeout); 189 dbus_timeout_set_data(timeout, NULL, NULL) [all...] |
/external/nist-sip/java/gov/nist/javax/sip/ |
SipListenerExt.java | 24 * <li>{@link DialogTimeoutEvent}- these are timeout notifications emitted as events by the 25 * SipProvider. Timeout events represent timers expiring in the underlying SipProvider dialog 26 * state machine. These timeout's events notify the application that a dialog has timed out.</li> 35 * Processes an expiration Timeout of an underlying {@link Dialog} handled by this 39 * DialogTimeoutEvent encapsulates the specific timeout type and the dialog identifier. The 40 * type of Timeout can by determined by:
|
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLSessionContext.java | 53 * Returns the timeout for sessions in this session context. Sessions 54 * exceeding the timeout are invalidated. 56 * @return the timeout in seconds, or {@code zero} if unlimited. 72 * Sets the timeout for sessions in this context. Sessions exceeding the 73 * timeout are invalidated. 76 * the timeout in seconds, or {@code zero} if unlimited.
|
/external/apache-http/src/org/apache/http/conn/ |
ClientConnectionRequest.java | 44 * the timeout expires, or the connection manager is 52 * @param timeout the timeout, 0 or negative for no timeout 53 * @param tunit the unit for the <code>timeout</code>, 54 * may be <code>null</code> only if there is no timeout 60 * in case of a timeout 64 ManagedClientConnection getConnection(long timeout, TimeUnit tunit)
|
/external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
PoolEntryRequest.java | 43 * Obtains a pool entry with a connection within the given timeout. 47 * @param timeout the timeout, 0 or negative for no timeout 48 * @param tunit the unit for the <code>timeout</code>, 49 * may be <code>null</code> only if there is no timeout 54 * if the timeout expired 59 long timeout,
|
/external/bluetooth/bluez/compat/ |
hidd.1 | 15 \fB\-t\fR <timeout> 16 Set idle timeout (in minutes)
|
/frameworks/base/libs/rs/ |
rsSignal.h | 36 // false for timeout 37 bool wait(uint64_t timeout = 0);
|
/system/core/include/cutils/ |
abort_socket.h | 69 /* Blocking socket I/O with timeout. 72 * timeout is in ms, use -1 to indicate no timeout. On timeout -1 is returned 78 socklen_t addrlen, int timeout); 81 socklen_t *addrlen, int timeout); 83 int asocket_read(struct asocket *s, void *buf, size_t count, int timeout); 86 int timeout);
|
/bionic/libc/arch-x86/bionic/ |
atomics_x86.S | 8 * int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout) 20 mov 20(%esp), %esi /* timeout */ 59 /* int __futex_syscall4(volatile void *ftx, int op, int val, const struct timespec *timeout) */ 70 movl 24(%esp), %esi /* timeout */
|
/bionic/libc/unistd/ |
pselect.c | 34 const struct timespec* timeout, const sigset_t* sigmask) 43 if (timeout != NULL) { 45 tv.tv_sec = timeout->tv_sec; 46 tv.tv_usec = (timeout->tv_nsec + 999)/1000; // round up
|
/cts/tools/host/src/com/android/cts/ |
DeviceObserver.java | 47 * Notify after installing apk timeout on the {@link TestDevice} 49 * @param testDevice the {@link TestDevice} whose install action timeout. 54 * Notify after uninstalling apk timeout. 56 * @param testDevice the {@link TestDevice} whose install action timeout
|
/external/grub/stage2/ |
preset_menu.c | 4 "timeout 3\n"
|
/external/webkit/Source/WebCore/page/ |
PositionOptions.h | 41 int timeout() const function in class:WebCore::PositionOptions 46 void setTimeout(int timeout) 48 ASSERT(timeout >= 0); 50 m_timeout = timeout;
|
/system/core/nexus/ |
DhcpEvent.cpp | 33 else if (val == DhcpEvent::TIMEOUT) 34 strncpy(buffer, "TIMEOUT", max); 50 else if (!strcasecmp(buffer, "TIMEOUT")) 51 return DhcpEvent::TIMEOUT;
|