HomeSort by relevance Sort by last modified time
    Searched refs:timeout (Results 501 - 525 of 2223) sorted by null

<<21222324252627282930>>

  /bionic/libc/include/sys/
epoll.h 70 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout);
  /cts/tools/cts-java-scanner-doclet/src/com/android/cts/javascannerdoclet/
CtsJavaScannerDoclet.java 85 int timeout = -1; local
95 timeout = ((Integer)value.value());
101 if (timeout >= 0) {
102 writer.append(method.name()).println(":" + timeout);
  /external/bluetooth/bluedroid/hci/include/
utils.h 162 ** Description sleep unconditionally for timeout milliseconds
167 void utils_delay (uint32_t timeout);
  /external/chromium_org/base/test/
test_launcher.h 78 // after |timeout|, it is terminated and |*was_timeout| is set to true.
81 base::TimeDelta timeout,
  /external/chromium_org/chrome/service/cloud_print/
connector_settings.h 66 void SetXmppPingTimeoutSec(int timeout);
85 // Indicate timeout between XMPP pings.
  /external/chromium_org/chrome/test/chromedriver/chrome/
stub_devtools_client.cc 44 const base::TimeDelta& timeout) {
stub_devtools_client.h 38 const base::TimeDelta& timeout) OVERRIDE;
web_view_impl.h 56 const base::TimeDelta& timeout,
62 const base::TimeDelta& timeout,
77 int timeout) OVERRIDE;
93 const base::TimeDelta& timeout,
  /external/chromium_org/chrome/test/chromedriver/net/
sync_websocket_impl.cc 35 std::string* message, const base::TimeDelta& timeout) {
36 return core_->ReceiveNextMessage(message, timeout);
78 const base::TimeDelta& timeout) {
80 base::TimeTicks deadline = base::TimeTicks::Now() + timeout;
  /external/chromium_org/third_party/WebKit/Source/core/loader/
PingLoader.h 77 void timeout(Timer<PingLoader>*) { delete this; } function in class:WebCore::PingLoader
  /external/dropbear/
random.c 101 struct timeval timeout; local
104 timeout.tv_sec = 2; /* two seconds should be enough */
105 timeout.tv_usec = 0;
109 ret = select(readfd + 1, &read_fds, NULL, NULL, &timeout);
  /external/guava/guava/src/com/google/common/collect/
Queues.java 193 * timeout.
198 * @param timeout how long to wait before giving up, in units of {@code unit}
199 * @param unit a {@code TimeUnit} determining how to interpret the timeout parameter
204 long timeout, TimeUnit unit) throws InterruptedException {
208 * execute Queue#drainTo is not added *on top* of waiting for the timeout (which could make
209 * the timeout arbitrarily inaccurate, given a queue that is slow to drain).
211 long deadline = System.nanoTime() + unit.toNanos(timeout);
238 * @param timeout how long to wait before giving up, in units of {@code unit}
239 * @param unit a {@code TimeUnit} determining how to interpret the timeout parameter
243 int numElements, long timeout, TimeUnit unit)
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
ListeningExecutorService.java 86 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
  /external/iptables/include/libipulog/
libipulog.h 31 unsigned char *buf, size_t len, int timeout);
  /external/kernel-headers/original/linux/
android_power.h 59 void android_lock_suspend_auto_expire(android_suspend_lock_t *lock, int timeout);
  /external/libppp/src/
chat.h 58 int TimeoutSec; /* Expect timeout value */
72 struct pppTimer timeout; /* TimeoutSec timer */ member in struct:chat
filter.h 70 unsigned timeout; /* Keep alive value for passed packet */ member in struct:filterent
  /external/linux-tools-perf/python/
twatch.py 30 evlist.poll(timeout = -1)
  /external/mdnsresponder/mDNSPosix/
mDNSPosix.h 69 // The timeout pointer MUST NOT be NULL.
70 // Set timeout->tv_sec to 0x3FFFFFFF if you want to have effectively no timeout
71 // After calling mDNSPosixGetFDSet(), call select(nfds, &readfds, NULL, NULL, &timeout); as usual
73 extern void mDNSPosixGetFDSet(mDNS *m, int *nfds, fd_set *readfds, struct timeval *timeout);
  /external/qemu/distrib/sdl-1.2.15/src/thread/symbian/
SDL_syssem.cpp 134 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
141 if ( timeout == SDL_MUTEX_MAXWAIT )
151 if(KErrNone == sema.Wait(timeout))
157 TInfo* info = new (ELeave)TInfo(timeout, sem->handle);
  /external/qemu/
iolooper-select.c 196 // Indicates timeout
234 int64_t timeout = deadline - iolooper_now(); local
236 /* If the deadline has passed, set the timeout to 0, this allows us
238 if (timeout < 0)
239 timeout = 0;
241 return iolooper_wait(iol, timeout);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPowerManager.java 43 public synchronized void acquire(long timeout) {
  /frameworks/base/core/java/com/android/internal/app/
NetInitiatedActivity.java 52 private int timeout = -1; field in class:NetInitiatedActivity
99 timeout = intent.getIntExtra(GpsNetInitiatedHandler.NI_INTENT_KEY_TIMEOUT, default_response_timeout);
101 if (DEBUG) Log.d(TAG, "onCreate() : notificationId: " + notificationId + " timeout: " + timeout + " default_response:" + default_response);
103 mHandler.sendMessageDelayed(mHandler.obtainMessage(GPS_NO_RESPONSE_TIME_OUT), (timeout * 1000));
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Event.c 170 struct timespec timeout; local
185 timeout.tv_sec = now.tv_sec + tv_us / 1000000;
186 timeout.tv_nsec = (tv_us % 1000000) * 1000;
203 funcret = pthread_cond_timedwait(&event->condition, (pthread_mutex_t *)(event->mutex), &timeout);
  /hardware/ti/omap3/dspbridge/inc/
rms_sh.h 97 RMS_WORD timeout; /* Timeout (msec) for blocking calls */ member in struct:RMS_StrmDef

Completed in 1761 milliseconds

<<21222324252627282930>>