HomeSort by relevance Sort by last modified time
    Searched refs:timeout (Results 176 - 200 of 2226) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingExecutorService.java 48 public boolean awaitTermination(long timeout, TimeUnit unit)
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);
  /external/jmdns/src/javax/jmdns/
JmDNS.java 188 * 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);
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 in milliseconds. Typical timeout should be 5s
    [all...]
JmmDNS.java 164 * 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);
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 should be 5s
    [all...]
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
TestCase.java 37 public void addTest(String testName, int timeout) {
38 mTests.add(new Test(testName, timeout));
  /development/ndk/sources/android/libportable/arch-mips/
poll.c 109 int WRAP(poll)(struct pollfd *fds, nfds_t nfds, long timeout)
117 ret = REAL(poll)(fds, nfds, timeout);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
event_listener.cc 67 static void AbsoluteFromDeltaMS(struct timespec* timeout, int ms_timeout) {
72 timeout->tv_nsec = (usec % 1000000) * 1000;
73 timeout->tv_sec = (usec / 1000000);
75 timeout->tv_sec = 0;
76 timeout->tv_nsec = 0;
111 // We are done if we have a signal or no timeout specified.
116 struct timespec timeout; local
117 AbsoluteFromDeltaMS(&timeout, ms_timeout);
131 &timeout);
144 // A "TIMEOUT" is not an error
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/
sync.c 80 * \param timeout timeout (in millseconds) that this function should wait
82 * timeout, use value 0.
92 unsigned char *data, uint16_t wLength, unsigned int timeout)
114 sync_transfer_cb, &completed, timeout);
160 int *transferred, unsigned int timeout, unsigned char type)
170 sync_transfer_cb, &completed, timeout);
224 * Also check <tt>transferred</tt> when dealing with a timeout error code.
226 * underlying O/S requirements, meaning that the timeout may expire after
228 * that may have been transferred; do not assume that timeout condition
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
plresolv.h 72 PRIntn bufsize, PRIntervalTime timeout,
77 PRIntn bufsize, PRIntervalTime timeout,
  /external/chromium_org/tools/site_compare/scrapers/chrome/
chromebase.py 50 def Scrape(urls, outdir, size, pos, timeout, kwargs):
58 timeout: amount of time to wait for page to load
84 load_time = windowing.WaitForThrobber(wnd, (20, 16, 36, 32), timeout)
108 if not windowing.WaitForProcessExit(proc, timeout):
113 return "timeout"
118 def Time(urls, size, timeout, kwargs):
124 timeout: amount of time to wait for page to load
128 A list of tuples (url, time). "time" can be "crashed" or "timeout"
153 load_time = windowing.WaitForThrobber(wnd, (20, 16, 36, 32), timeout)
158 load_time = "timeout"
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/chrome/
inspector_memory.py 25 def GetDOMCounters(self, timeout):
29 timeout: The number of seconds to wait for the inspector backend to
38 }, timeout)
  /external/kernel-headers/original/linux/
completion.h 48 unsigned long timeout));
50 struct completion *x, unsigned long timeout));
  /external/libusb/libusb/
sync.c 62 * \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
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Ping.java 61 * response was cancelled, or -2 if the timeout elapsed before the round
64 public long roundTripTime(long timeout, TimeUnit unit) throws InterruptedException {
65 if (latch.await(timeout, unit)) {
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5BytestreamSession.java 85 public void setReadTimeout(int timeout) throws IOException {
87 this.socket.setSoTimeout(timeout);
  /external/smack/src/org/jivesoftware/smackx/muc/
ConnectionDetachedPacketCollector.java 92 * until a packet is available or the <tt>timeout</tt> has elapased. If the
93 * timeout elapses without a result, <tt>null</tt> will be returned.
95 * @param timeout the amount of time to wait for the next packet (in milleseconds).
98 public Packet nextResult(long timeout) {
100 return resultQueue.poll(timeout, TimeUnit.MILLISECONDS);
  /frameworks/base/core/tests/coretests/src/android/os/
HandlerTester.java 30 public void doTest(long timeout) {
35 wait(timeout);
  /frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
AwaitableCompletionListener.java 47 public void awaitOneCallback(long timeout, TimeUnit unit) throws InterruptedException,
49 if (mQueue.poll(timeout, unit) == null) {
AwaitableErrorListener.java 55 public void awaitOneCallback(long timeout, TimeUnit unit) throws InterruptedException,
57 if (mQueue.poll(timeout, unit) == null) {
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
Connection.h 83 * @param timeout Timeout in milliseconds
86 * @return -2 if no data available, i.e. timeout
88 virtual size_t readData(void *buffer, uint32_t len, int32_t timeout);
112 * @param timeout Timeout in milliseconds
116 virtual int waitData(int32_t timeout);
  /libcore/luni/src/main/java/java/util/concurrent/
CountDownLatch.java 239 * @param timeout the maximum time to wait
240 * @param unit the time unit of the {@code timeout} argument
246 public boolean await(long timeout, TimeUnit unit)
248 return sync.tryAcquireSharedNanos(1, unit.toNanos(timeout));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
mainloop.h 54 * that need to be monitored and calculate the next timeout.
88 on error or exit request. timeout specifies a maximum timeout for the subsequent
90 int pa_mainloop_prepare(pa_mainloop *m, int timeout);
95 /** Dispatch timeout, io and deferred events from the previously executed poll. Returns
123 typedef int (*pa_poll_func)(struct pollfd *ufds, unsigned long nfds, int timeout, void*userdata);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
mainloop.h 54 * that need to be monitored and calculate the next timeout.
88 on error or exit request. timeout specifies a maximum timeout for the subsequent
90 int pa_mainloop_prepare(pa_mainloop *m, int timeout);
95 /** Dispatch timeout, io and deferred events from the previously executed poll. Returns
123 typedef int (*pa_poll_func)(struct pollfd *ufds, unsigned long nfds, int timeout, void*userdata);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
mainloop.h 54 * that need to be monitored and calculate the next timeout.
88 on error or exit request. timeout specifies a maximum timeout for the subsequent
90 int pa_mainloop_prepare(pa_mainloop *m, int timeout);
95 /** Dispatch timeout, io and deferred events from the previously executed poll. Returns
123 typedef int (*pa_poll_func)(struct pollfd *ufds, unsigned long nfds, int timeout, void*userdata);
  /bionic/libc/include/sys/
select.h 42 const struct timespec *timeout, const sigset_t *sigmask);
  /bionic/libc/kernel/common/linux/
genlock.h 32 int timeout; member in struct:genlock_lock

Completed in 1787 milliseconds

1 2 3 4 5 6 78 91011>>