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

<<11121314151617181920>>

  /external/chromium_org/base/process/
kill_mac.cc 30 // Waits for |timeout| seconds for the given |child| to exit and reap it. If
35 // timeout, so this method is preferred to wait for a specified period of
38 // before the timeout expires, or if the kqueue fails or misbehaves, the
67 void WaitForChildToDie(pid_t child, int timeout) {
69 DCHECK(timeout > 0);
117 TimeDelta remaining_delta = TimeDelta::FromSeconds(timeout);
  /external/chromium_org/v8/tools/testrunner/local/
verbose.py 38 * %(timeout)4d tests are expected to timeout sometimes
47 skipped = timeout = nocrash = passes = fail_ok = fail = 0
56 if statusfile.TIMEOUT in o: timeout += 1
64 "timeout": timeout,
execution.py 43 def __init__(self, command, dep_command, test_id, timeout, verbose):
47 self.timeout = timeout
55 dep_output = commands.Execute(job.dep_command, job.verbose, job.timeout)
62 output = commands.Execute(job.command, job.verbose, job.timeout)
112 timeout = self.context.timeout
116 timeout *= 4
121 job = Job(command, dep_command, test.id, timeout, self.context.verbose)
  /external/qemu/distrib/sdl-1.2.15/src/thread/win32/
SDL_syssem.c 87 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
97 if ( timeout == SDL_MUTEX_MAXWAIT ) {
100 dwMilliseconds = (DWORD)timeout;
  /external/wpa_supplicant_8/wpa_supplicant/
ap.h 22 int timeout);
25 const char * wpas_wps_ap_pin_random(struct wpa_supplicant *wpa_s, int timeout);
28 int timeout);
  /libcore/luni/src/main/java/java/util/concurrent/
TimeUnit.java 23 * the following code will timeout in 50 milliseconds if the {@link
30 * while this code will timeout in 50 seconds:
35 * Note however, that there is no guarantee that a particular timeout
267 * This is a convenience method that converts timeout arguments
275 * public synchronized Object poll(long timeout, TimeUnit unit)
278 * unit.timedWait(this, timeout);
284 * @param timeout the maximum time to wait. If less than
288 public void timedWait(Object obj, long timeout)
290 if (timeout > 0) {
291 long ms = toMillis(timeout);
    [all...]
  /bionic/libc/include/sys/
atomics.h 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout);
  /development/host/windows/usb/winusb/
adb_winusb_endpoint_object.h 89 @param[in] time_out A timeout (in milliseconds) required for this I/O to
91 timeout set for this I/O.
108 @param[in] time_out A timeout (in milliseconds) required for this I/O to
110 timeout set for this I/O.
125 /** \brief Sets read / write operation timeout.
127 @param[in] timeout Timeout value in milliseconds to use for current read
129 not timeout at all. Note that timeout that is set with this method is
134 WinUsb framework will accept a timeout parameter in WinUsb_Read/Write
    [all...]
  /development/ndk/platforms/android-3/include/sys/
atomics.h 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout);
epoll.h 67 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout);
  /external/chromium/third_party/libevent/
evrpc-internal.h 81 int timeout; member in struct:evrpc_pool
  /external/chromium_org/build/android/pylib/gtest/
test_runner.py 47 timeout = test_options.timeout
48 if timeout == 0:
49 timeout = 60
50 # On a VM (e.g. chromium buildbots), this timeout is way too small.
52 timeout = timeout * 2
54 self._timeout = timeout * self.tool.GetTimeoutScale()
110 timeout=self._timeout)
117 found = p.expect([re_ok, re_fail, re_crash], timeout=self._timeout
    [all...]
  /external/chromium_org/chrome/browser/usb/
usb_device_handle.h 90 const unsigned int timeout,
97 const unsigned int timeout,
104 const unsigned int timeout,
113 const unsigned int timeout,
  /external/chromium_org/chrome/service/cloud_print/
connector_settings.cc 77 int timeout = prefs->GetInt( local
79 SetXmppPingTimeoutSec(timeout);
128 void ConnectorSettings::SetXmppPingTimeoutSec(int timeout) {
129 xmpp_ping_timeout_sec_ = timeout;
132 "CP_CONNECTOR: XMPP ping timeout is less then minimal value";
  /external/chromium_org/chrome/test/chromedriver/chrome/
devtools_client.h 48 // If the condition is not met within |timeout|, kTimeout status
49 // is returned eventually. If |timeout| is 0, this function will not block.
51 const base::TimeDelta& timeout) = 0;
  /external/chromium_org/content/browser/aura/
compositor_resize_lock.h 25 const base::TimeDelta& timeout);
  /external/chromium_org/third_party/libevent/
evrpc-internal.h 81 int timeout; member in struct:evrpc_pool
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
egl_g3d_sync.h 43 EGLint flags, EGLTimeKHR timeout);
  /external/chromium_org/tools/site_compare/drivers/win32/
windowing.py 128 def InvokeAndWait(path, cmdline="", timeout=10, tick=1.):
134 timeout: how long (in seconds) to wait before giving up
178 tries_until_timeout = timeout/tick
193 # TODO(jhaas): Should we throw an exception if we timeout? Or is returning
198 def WaitForProcessExit(proc, timeout=None):
203 timeout: timeout (in seconds). None = wait indefinitely
208 if timeout is None:
209 timeout = win32event.INFINITE
212 timeout *= 100
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
CheckedFuture.java 69 * timeout this method throws a normal {@link TimeoutException}.
75 V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X;
  /external/iproute2/include/linux/hdlc/
ioctl.h 76 unsigned int timeout; member in struct:__anon19233
  /external/libusb/libusb/
libusb.h 729 /** Timeout for this transfer in millseconds. A value of 0 indicates no
730 * timeout. */
731 unsigned int timeout; member in struct:libusb_transfer
921 * \param timeout timeout for the transfer in milliseconds
926 unsigned int timeout)
932 transfer->timeout = timeout;
952 * \param timeout timeout for the transfer in millisecond
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/common/
egl_g3d_sync.h 43 EGLint flags, EGLTimeKHR timeout);
  /external/openssh/openbsd-compat/
bsd-poll.c 40 poll(struct pollfd *fds, nfds_t nfds, int timeout)
81 /* poll timeout is msec, select is timeval (sec + usec) */
82 if (timeout >= 0) {
83 tv.tv_sec = timeout / 1000;
84 tv.tv_usec = (timeout % 1000) * 1000;
  /external/qemu/
async.c 197 void qemu_bh_update_timeout(int *timeout)
206 *timeout = MIN(10, *timeout);
210 *timeout = 0;

Completed in 145 milliseconds

<<11121314151617181920>>