HomeSort by relevance Sort by last modified time
    Searched refs:timeout (Results 76 - 100 of 2264) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMTimer.h 44 static int install(ExecutionContext*, PassOwnPtr<ScheduledAction>, int timeout, bool singleShot);
63 static PassOwnPtr<DOMTimer> create(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot, int timeoutID)
65 return adoptPtr(new DOMTimer(context, action, timeout, singleShot, timeoutID));
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
misc_web_contents_backend.py 29 def _ListWebContents(self, timeout=None):
30 data = self._browser_backend.Request('', timeout=timeout)
  /external/kernel-headers/original/linux/
genlock.h 14 int genlock_wait(struct genlock_handle *handle, u32 timeout);
17 u32 timeout);
31 int timeout; member in struct:genlock_lock
  /hardware/ti/omap4xxx/domx/mm_osal/inc/
timm_osal_pipes.h 58 * Defined for Pipe timeout value
67 void *pMessage, TIMM_OSAL_U32 size, TIMM_OSAL_S32 timeout);
70 void *pMessage, TIMM_OSAL_U32 size, TIMM_OSAL_S32 timeout);
75 TIMM_OSAL_U32 * actualSize, TIMM_OSAL_S32 timeout);
  /external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
SDL_syssem.c 98 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
114 if ( timeout == 0 ) {
117 if ( timeout == SDL_MUTEX_MAXWAIT ) {
122 /* Setup the timeout. sem_timedwait doesn't wait for
124 * This time is now plus the timeout.
128 /* Add our timeout to current time */
129 now.tv_usec += (timeout % 1000) * 1000;
130 now.tv_sec += timeout / 1000;
150 end = SDL_GetTicks() + timeout;
  /external/qemu/distrib/sdl-1.2.15/src/thread/riscos/
SDL_syssem.c 53 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
145 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
155 if ( timeout == 0 ) {
158 if ( timeout == SDL_MUTEX_MAXWAIT ) {
163 timeout += SDL_GetTicks();
170 } while ( SDL_GetTicks() < timeout );
  /system/netd/
IdletimerController.cpp 44 * iptables -t raw -A idletimer_PREROUTING -i rmnet0 -j IDLETIMER --timeout 5 --label test-chain --send_nl_msg 1
45 * iptables -t mangle -A idletimer_POSTROUTING -o rmnet0 -j IDLETIMER --timeout 5 --label test-chain --send_nl_msg 1
55 * ndc idletimer add <iface> <timeout> <class label>
56 * ndc idletimer remove <iface> <timeout> <class label>
62 * Remember that the timeout value has to be same at the time of the
174 uint32_t timeout,
179 snprintf(timeout_str, sizeof(timeout_str), "%u", timeout);
191 "--timeout",
213 "--timeout",
226 uint32_t timeout,
    [all...]
  /development/ndk/sources/android/libportable/arch-x86/
epoll.c 31 int WRAP(epoll_wait)(int epfd, struct epoll_event_portable *events, int max, int timeout)
34 int ret = REAL(epoll_wait)(epfd, &x86_epoll_event, max, timeout);
  /external/apache-http/src/org/apache/http/conn/params/
ConnManagerParamBean.java 48 public void setTimeout (final long timeout) {
49 params.setLongParameter(ConnManagerPNames.TIMEOUT, timeout);
  /external/arduino/hardware/arduino/cores/arduino/
wiring_pulse.c 32 unsigned long pulseIn(uint8_t pin, uint8_t state, unsigned long timeout)
42 // convert the timeout from microseconds to a number of times through
45 unsigned long maxloops = microsecondsToClockCycles(timeout) / 16;
  /external/chromium/third_party/libevent/
epoll_sub.c 49 epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout)
51 return (syscall(__NR_epoll_wait, epfd, events, maxevents, timeout));
  /external/chromium_org/build/android/pylib/utils/
timeout_retry.py 14 def Run(func, timeout, retries, args=[], kwargs={}):
19 timeout: the timeout in seconds for each try.
40 thread_group.JoinAll(watchdog_timer.WatchdogTimer(timeout))
  /external/chromium_org/chrome/browser/notifications/
message_center_notification_manager_win.cc 18 base::TimeDelta timeout) {
19 first_run_idle_timeout_ = timeout;
  /external/chromium_org/third_party/libevent/
epoll_sub.c 49 epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout)
51 return (syscall(__NR_epoll_wait, epfd, events, maxevents, timeout));
  /frameworks/av/libvideoeditor/osal/src/
M4OSA_Mutex.c 119 * "timeout" is reached. This is a blocking call.
121 * @param timeout:(IN) Time out in milliseconds
129 M4OSA_ERR M4OSA_mutexLock(M4OSA_Context context, M4OSA_UInt32 timeout)
138 context, timeout);
154 if ( M4OSA_WAIT_FOREVER == timeout)
165 while ( ( EBUSY == result ) && ( 0 < timeout ) )
168 if (1 <= timeout)
171 timeout -= 1;
175 ts.tv_nsec = timeout * 1000000;
176 timeout = 0
    [all...]
M4OSA_Semaphore.c 118 * @note If "timeout" value is M4OSA_WAIT_FOREVER, the calling thread
121 * @param timeout:(IN) Time out in milliseconds
129 M4OSA_ERR M4OSA_semaphoreWait(M4OSA_Context context, M4OSA_Int32 timeout)
137 context, timeout);
145 if ( (M4OSA_Int32)M4OSA_WAIT_FOREVER == timeout)
158 while ( ((EBUSY == result) || (EAGAIN == result)) && ( 0 < timeout ) )
161 if (1 <= timeout)
164 timeout -= 1;
168 ts.tv_nsec = timeout * 1000000;
169 timeout = 0
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
DumpUtils.java 35 * trying to acquire, we use a short timeout to avoid deadlocks. The process
38 public static void dumpAsync(Handler handler, final Dump dump, PrintWriter pw, long timeout) {
47 }, timeout)) {
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
Connection.cpp 108 size_t Connection::readData(void *buffer, uint32_t len, int32_t timeout)
118 if (timeout >= 0) {
119 // Calculate timeout value
120 tv.tv_sec = timeout / 1000;
121 tv.tv_usec = (timeout - (tv.tv_sec * 1000)) * 1000;
137 LOG_W(" Timeout during select() / No more notifications.");
178 int Connection::waitData(int32_t timeout)
187 if (timeout >= 0) {
188 // Calculate timeout value
189 tv.tv_sec = timeout / 1000
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
BlockingQueue.java 210 * @param timeout how long to wait before giving up, in units of
213 * {@code timeout} parameter
223 boolean offer(E e, long timeout, TimeUnit unit)
239 * @param timeout how long to wait before giving up, in units of
242 * {@code timeout} parameter
247 E poll(long timeout, TimeUnit unit)
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
event_listener.cc 55 static void AbsoluteFromDeltaMS(struct timespec* timeout, int ms_timeout) {
60 timeout->tv_nsec = (usec % 1000000) * 1000;
61 timeout->tv_sec = (usec / 1000000);
63 timeout->tv_sec = 0;
64 timeout->tv_nsec = 0;
87 struct timespec timeout; local
88 AbsoluteFromDeltaMS(&timeout, ms_timeout);
96 &timeout);
152 struct timespec timeout; local
153 AbsoluteFromDeltaMS(&timeout, ms_timeout)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
telnetlib.py 30 - timeout should be intrinsic to the connection object instead of an
150 read_until(expected, [timeout])
151 Read until the expected string has been seen, or a timeout is
152 hit (default is no timeout); may block.
189 timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
194 and timeout are optional.
199 self.timeout = timeout
211 self.open(host, port, timeout)
213 def open(self, host, port=0, timeout=socket._GLOBAL_DEFAULT_TIMEOUT)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
telnetlib.py 30 - timeout should be intrinsic to the connection object instead of an
150 read_until(expected, [timeout])
151 Read until the expected string has been seen, or a timeout is
152 hit (default is no timeout); may block.
189 timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
194 and timeout are optional.
199 self.timeout = timeout
211 self.open(host, port, timeout)
213 def open(self, host, port=0, timeout=socket._GLOBAL_DEFAULT_TIMEOUT)
    [all...]
  /bionic/libc/kernel/common/linux/hdlc/
ioctl.h 62 unsigned int timeout; member in struct:__anon381
  /development/ndk/platforms/android-3/include/linux/hdlc/
ioctl.h 54 unsigned int timeout; member in struct:__anon1061
  /external/apache-http/src/org/apache/http/
HttpClientConnection.java 53 * implementations may completely ignore the timeout parameter.
55 * @param timeout the maximum time in milliseconds to wait for data
57 * even after waiting for <code>timeout</code> milliseconds.
60 boolean isResponseAvailable(int timeout)

Completed in 1206 milliseconds

1 2 34 5 6 7 8 91011>>