HomeSort by relevance Sort by last modified time
    Searched defs:timeout (Results 151 - 175 of 1175) sorted by null

1 2 3 4 5 67 8 91011>>

  /bionic/libc/kernel/uapi/linux/
bsg.h 51 __u32 timeout; member in struct:sg_io_v4
  /bootable/recovery/
ui.cpp 223 struct timespec timeout; local
225 timeout.tv_sec = now.tv_sec;
226 timeout.tv_nsec = now.tv_usec * 1000;
227 timeout.tv_sec += UI_WAIT_KEY_TIMEOUT_SEC;
232 &timeout);
  /cts/tests/tests/net/src/android/net/wifi/cts/
ConcurrencyTest.java 106 long timeout = System.currentTimeMillis() + TIMEOUT_MSEC; local
107 while (System.currentTimeMillis() < timeout
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
TestListParser.java 55 int timeout = -1; local
57 timeout = Integer.parseInt(tokens[2]);
59 handleTest(currentCase, value, timeout);
102 private void handleTest(TestCase testCase, String test, int timeout) {
103 testCase.addTest(test, timeout);
  /development/ndk/platforms/android-L/include/linux/
bsg.h 51 __u32 timeout; member in struct:sg_io_v4
  /development/ndk/sources/android/libportable/arch-mips/
syscall.c 329 const struct timespec *timeout; local
335 timeout = va_arg(ap, struct timespec *);
339 ret = WRAP(__rt_sigtimedwait)(set, info, timeout, sigsetsize);
  /device/google/accessory/arduino/USB_Host_Shield/
Usb.cpp 154 fe USB xfer timeout */
238 unsigned long timeout = millis() + USB_XFER_TIMEOUT; local
255 while( rcode && ( timeout > millis())) {
266 return( rcode ); //return TIMEOUT
289 /* If nak_limit == 0, do not count NAKs, exit after timeout */
290 /* If bus timeout, re-sends up to USB_RETRY_LIMIT times */
291 /* return codes 0x00-0x0f are HRSLT( 0x00 being success ), 0xff means timeout */
294 unsigned long timeout = millis() + USB_XFER_TIMEOUT; local
300 while( timeout > millis() ) {
303 while( millis() < timeout ) { //wait for transfer completion
    [all...]
  /external/chromium_org/content/gpu/
gpu_watchdog_thread.cc 31 GpuWatchdogThread::GpuWatchdogThread(int timeout)
34 timeout_(base::TimeDelta::FromMilliseconds(timeout)),
43 DCHECK(timeout >= 0);
176 // be pretty sluggish, so allow some extra time before the next timeout.
177 base::TimeDelta timeout = timeout_ * (after_suspend ? 3 : 1); local
178 suspension_timeout_ = base::Time::Now() + timeout * 2;
194 timeout);
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
TestCallbackHelperContainer.java 159 public boolean waitUntilHasValue(long timeout, TimeUnit timeoutUnits)
161 waitUntilCriteria(getHasValueCriteria(), timeout, timeoutUnits); local
  /external/chromium_org/gpu/command_buffer/service/
gpu_scheduler.cc 124 // If the scheduler was rescheduled after a timeout, ignore the subsequent
140 // state, cancel the task that would reschedule it after a timeout.
155 // a timeout. This should only be necessary on pre-Vista.
239 base::TimeDelta timeout = local
245 now - fence.issue_time > timeout) {
  /external/chromium_org/third_party/libevent/
devpoll.c 219 int i, res, timeout = -1; local
225 timeout = tv->tv_sec * 1000 + (tv->tv_usec + 999) / 1000;
229 dvp.dp_timeout = timeout;
epoll.c 97 /* On Linux kernels at least up to 2.6.24.4, epoll can't handle timeout
187 int i, res, timeout = -1; local
190 timeout = tv->tv_sec * 1000 + (tv->tv_usec + 999) / 1000;
192 if (timeout > MAX_EPOLL_TIMEOUT_MSEC) {
193 /* Linux kernels can wait forever if the timeout is too big;
195 timeout = MAX_EPOLL_TIMEOUT_MSEC;
198 res = epoll_wait(epollop->epfd, events, epollop->nevents, timeout);
kqueue.c 312 struct timespec timeout = { 0, 0 }; local
323 if (kevent(kqop->kq, &kev, 1, NULL, 0, &timeout) == -1)
385 struct timespec timeout = { 0, 0 }; local
398 if (kevent(kqop->kq, &kev, 1, NULL, 0, &timeout) == -1)
  /external/chromium_org/third_party/libjingle/source/talk/base/
asynchttprequest.h 79 int timeout() { return timeout_; } function in class:talk_base::AsyncHttpRequest
80 void set_timeout(int timeout) { timeout_ = timeout; }
autodetectproxy.cc 179 int timeout = 2000; local
182 timeout += 2000;
194 Thread::Current()->PostDelayed(timeout, this, MSG_TIMEOUT);
httprequest.h 76 int timeout() { return timeout_; } function in class:talk_base::HttpRequest
77 void set_timeout(int timeout) { timeout_ = timeout; }
  /external/chromium_org/third_party/webrtc/base/
asynchttprequest.h 62 int timeout() { return timeout_; } function in class:rtc::AsyncHttpRequest
63 void set_timeout(int timeout) { timeout_ = timeout; }
autodetectproxy.cc 162 int timeout = 2000; local
165 timeout += 2000;
177 Thread::Current()->PostDelayed(timeout, this, MSG_TIMEOUT);
httprequest.h 59 int timeout() { return timeout_; } function in class:rtc::HttpRequest
60 void set_timeout(int timeout) { timeout_ = timeout; }
  /external/chromium_org/third_party/webrtc/modules/video_capture/linux/
video_capture_linux.cc 424 struct timeval timeout; local
430 timeout.tv_sec = 1;
431 timeout.tv_usec = 0;
433 retVal = select(_deviceFd + 1, &rSet, NULL, NULL, &timeout);
  /external/chromium_org/third_party/webrtc/test/channel_transport/
udp_socket_manager_posix.cc 261 // Timeout = 1 second.
262 struct timeval timeout; local
263 timeout.tv_sec = 0;
264 timeout.tv_usec = 10000;
283 num = select(maxFd+1, &_readFds, NULL, NULL, &timeout);
287 // Timeout = 10 ms.
293 // Timeout = 10 ms.
  /external/chromium_org/tools/android/file_poller/
file_poller.cc 146 struct timeval timeout; local
149 timeout.tv_sec = 0;
150 timeout.tv_usec = 1000000 / context.poll_rate;
153 } while (select(sockfd + 1, &rfds, NULL, NULL, &timeout) == 0);
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/
serialjava.py 153 """Read size bytes from the serial port. If a timeout is set it may
154 return less characters as requested. With no timeout it will block
162 if self.timeout >= 0:
249 timeout=3, # set a timeout value, None for waiting forever variable in class:.Serial
  /external/dhcpcd/
eloop.c 50 static struct timeout { struct
55 struct timeout *next;
57 static struct timeout *free_timeouts;
117 struct timeout *t, *tt = NULL;
127 /* Remove existing timeout if present */
154 /* The timeout list should be in chronological order,
185 * timeout. */
189 struct timeout *t, *tt, *last = NULL;
229 struct timeout *t, *tt, *last = NULL;
255 struct timeout *t
    [all...]
  /external/ipsec-tools/src/racoon/
schedule.c 61 static struct timeval timeout; variable in typeref:struct:timeval
117 timeout.tv_sec = delta < 0 ? 0 : delta;
118 timeout.tv_usec = 0;
120 return &timeout;
335 struct timeval *timeout; local
348 timeout = schedular();
350 error = select(nfds, &rfds, (fd_set *)0, (fd_set *)0, timeout);

Completed in 1551 milliseconds

1 2 3 4 5 67 8 91011>>