Searched refs:timeout (Results 51 - 75 of 636) sorted by relevance

1234567891011>>

/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
H A Dtimeout-clear-watch.js17 timeout: 0
H A Dtimeout.js1 description("Tests that when timeout is non-zero, the success callback is called as expected.");
26 timeout: 1000
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DMessageSender.h57 template<typename U> bool sendSync(const U& message, const typename U::Reply& reply, double timeout = Connection::NoTimeout)
59 return sendSync(message, reply, static_cast<T*>(this)->destinationID(), timeout);
62 template<typename U> bool sendSync(const U& message, const typename U::Reply& reply, uint64_t destinationID, double timeout = Connection::NoTimeout)
67 return connection->sendSync(message, reply, destinationID, timeout);
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
H A Dp2p_disconnect.py40 global timeout
49 def __init__(self,interface_name,wpas_dbus_interface,timeout):
53 self.timeout = timeout
104 # Required for timeout implementation
113 timeout = 5 variable
152 wpas_dbus_interface,timeout)
163 time.sleep(int(p2p_disconnect_test.timeout))
H A Dp2p_flush.py40 global timeout
49 def __init__(self,interface_name,wpas_dbus_interface,timeout):
53 self.timeout = timeout
104 # Required for timeout implementation
113 timeout = 5 variable
151 p2p_flush_test = P2P_Flush(interface_name, wpas_dbus_interface,timeout)
162 time.sleep(int(p2p_flush_test.timeout))
H A Dp2p_stop_find.py42 global timeout
51 def __init__(self,interface_name,wpas_dbus_interface,timeout):
55 self.timeout = timeout
109 # Required for timeout implementation
118 timeout = 5 variable
157 wpas_dbus_interface,timeout)
168 time.sleep(int(p2p_stop_find_test.timeout))
/external/dbus/dbus/
H A Ddbus-mainloop.c92 DBusTimeout *timeout; member in struct:__anon5002
125 timeout_callback_new (DBusTimeout *timeout, argument
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
317 _dbus_loop_add_timeout(DBusLoop *loop, DBusTimeout *timeout, DBusTimeoutFunction function, void *data, DBusFreeFunction free_data_func) argument
340 _dbus_loop_remove_timeout(DBusLoop *loop, DBusTimeout *timeout, DBusTimeoutFunction function, void *data) argument
374 check_timeout(unsigned long tv_sec, unsigned long tv_usec, TimeoutCallback *tcb, int *timeout) argument
533 long timeout; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_common.c159 DBusTimeout *timeout = sock_ctx; local
160 dbus_timeout_handle(timeout);
164 static dbus_bool_t add_timeout(DBusTimeout *timeout, void *data) argument
167 if (!dbus_timeout_get_enabled(timeout))
170 eloop_register_timeout(0, dbus_timeout_get_interval(timeout) * 1000,
171 process_timeout, priv, timeout);
173 dbus_timeout_set_data(timeout, priv, NULL);
179 static void remove_timeout(DBusTimeout *timeout, void *data) argument
182 eloop_cancel_timeout(process_timeout, priv, timeout);
183 dbus_timeout_set_data(timeout, NUL
187 timeout_toggled(DBusTimeout *timeout, void *data) argument
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DForwardingExecutorService.java48 public boolean awaitTermination(long timeout, TimeUnit unit) argument
50 return delegate().awaitTermination(timeout, unit);
61 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
63 return delegate().invokeAll(tasks, timeout, unit);
74 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
76 return delegate().invokeAny(tasks, timeout, unit);
60 invokeAll( Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
73 invokeAny( Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
/external/jmdns/src/javax/jmdns/
H A DJmDNS.java188 * Get service information. If the information is not cached, the method will block for the given timeout until updated information is received.
190 * Usage note: If you call this method from the AWT event dispatcher thread, use a small timeout, or you will make the user interface unresponsive.
196 * @param timeout
197 * timeout in milliseconds. Typical timeout should be 5s.
200 public abstract ServiceInfo getServiceInfo(String type, String name, long timeout); argument
218 * Get service information. If the information is not cached, the method will block for the given timeout until updated information is received.
220 * Usage note: If you call this method from the AWT event dispatcher thread, use a small timeout, or you will make the user interface unresponsive.
226 * @param timeout
227 * timeout i
232 getServiceInfo(String type, String name, boolean persistent, long timeout) argument
270 requestServiceInfo(String type, String name, long timeout) argument
284 requestServiceInfo(String type, String name, boolean persistent, long timeout) argument
395 list(String type, long timeout) argument
415 listBySubtype(String type, long timeout) argument
[all...]
H A DJmmDNS.java164 * Usage note: If you call this method from the AWT event dispatcher thread, use a small timeout, or you will make the user interface unresponsive.
170 * @param timeout
171 * timeout in milliseconds. Typical timeout should be 5s.
175 public abstract ServiceInfo[] getServiceInfos(String type, String name, long timeout); argument
180 * Usage note: If you call this method from the AWT event dispatcher thread, use a small timeout, or you will make the user interface unresponsive.
196 * Usage note: If you call this method from the AWT event dispatcher thread, use a small timeout, or you will make the user interface unresponsive.
202 * @param timeout
203 * timeout in milliseconds. Typical timeout shoul
209 getServiceInfos(String type, String name, boolean persistent, long timeout) argument
246 requestServiceInfo(String type, String name, long timeout) argument
261 requestServiceInfo(String type, String name, boolean persistent, long timeout) argument
360 list(String type, long timeout) argument
382 listBySubtype(String type, long timeout) argument
[all...]
/external/kernel-headers/original/linux/
H A Dcompletion.h48 unsigned long timeout));
50 struct completion *x, unsigned long timeout));
/external/libusb/libusb/
H A Dsync.c62 * \param timeout timeout (in millseconds) that this function should wait
64 * timeout, use value 0.
74 unsigned char *data, uint16_t wLength, unsigned int timeout)
96 ctrl_transfer_cb, &completed, timeout);
155 int *transferred, unsigned int timeout, unsigned char type)
165 bulk_transfer_cb, &completed, timeout);
227 * Also check <tt>transferred</tt> when dealing with a timeout error code.
229 * underlying O/S requirements, meaning that the timeout may expire after
231 * that may have been transferred; do not assume that timeout condition
72 libusb_control_transfer(libusb_device_handle *dev_handle, uint8_t bmRequestType, uint8_t bRequest, uint16_t wValue, uint16_t wIndex, unsigned char *data, uint16_t wLength, unsigned int timeout) argument
153 do_sync_bulk_transfer(struct libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *buffer, int length, int *transferred, unsigned int timeout, unsigned char type) argument
255 libusb_bulk_transfer(struct libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *data, int length, int *transferred, unsigned int timeout) argument
304 libusb_interrupt_transfer( struct libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *data, int length, int *transferred, unsigned int timeout) argument
[all...]
/external/webkit/Source/WebCore/page/
H A DDOMTimer.h45 static int install(ScriptExecutionContext*, PassOwnPtr<ScheduledAction>, int timeout, bool singleShot);
61 double intervalClampedToMinimum(int timeout, double minimumTimerInterval) const;
/external/apache-http/src/org/apache/http/io/
H A DSessionInputBuffer.java59 boolean isDataAvailable(int timeout) throws IOException; argument
/external/apache-http/src/org/apache/http/params/
H A DHttpConnectionParams.java56 * 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
78 setSoTimeout(final HttpParams params, int timeout) argument
182 setConnectionTimeout(final HttpParams params, int timeout) argument
[all...]
/external/bluetooth/bluedroid/bta/include/
H A Dptim.h82 extern void ptim_start_timer(tPTIM_CB *p_cb, TIMER_LIST_ENT *p_tle, UINT16 type, INT32 timeout);
/external/junit/src/org/junit/
H A DTest.java37 * <p>The second optional parameter, <code>timeout</code>, causes a test to fail if it takes
40 * &#064;Test(<b>timeout=100</b>) public void infinity() {
65 * Optionally specify <code>timeout</code> in milliseconds to cause a test method to fail if it
67 long timeout() default 0L;
/external/libnfc-nci/src/nfa/int/
H A Dnfa_sys_ptim.h82 extern void nfa_sys_ptim_start_timer (tPTIM_CB *p_cb, TIMER_LIST_ENT *p_tle, UINT16 type, INT32 timeout);
/external/mtpd/
H A Dmtpd.h47 * 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/qemu/
H A Dqemu-os-posix.h29 static inline void os_host_main_loop_wait(int *timeout) argument
/external/webkit/Tools/WebKitTestRunner/mac/
H A DTestControllerMac.mm54 void TestController::platformRunUntil(bool& done, double timeout)
56 CFAbsoluteTime end = CFAbsoluteTimeGetCurrent() + timeout;
/external/chromium/base/test/
H A Dtest_timeouts.cc23 int timeout; local
24 base::StringToInt(string_value, &timeout);
25 *value = std::max(*value, timeout);
43 // The timeout values should increase in the order they appear in this block.
77 // The timeout values should be increasing in the right order.
/external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
H A Dprettyload.js60 function timeout() {
83 } else { timeout(); }
85 } else { timeout(); }
/external/chromium/third_party/libjingle/source/talk/base/
H A Dasynchttprequest.h73 int timeout() { return timeout_; } function in class:talk_base::AsyncHttpRequest
74 void set_timeout(int timeout) { timeout_ = timeout; } argument

Completed in 955 milliseconds

1234567891011>>