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

<<21222324252627282930>>

  /external/chromium_org/chrome/test/chromedriver/chrome/
stub_web_view.h 37 const base::TimeDelta& timeout,
43 const base::TimeDelta& timeout,
58 const base::TimeDelta& timeout,
web_view.h 75 // one of the callbacks is invoked or the timeout occurs.
80 const base::TimeDelta& timeout,
90 const base::TimeDelta& timeout,
122 // If timeout is exceeded, will return a timeout status.
124 // timeout before returning the timeout status.
126 const base::TimeDelta& timeout,
chrome_desktop_impl.h 39 // Returns an error if the timeout is exceeded.
41 const base::TimeDelta& timeout,
stub_devtools_client.h 39 const base::TimeDelta& timeout) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8WorkerGlobalScopeCustom.cpp 87 int32_t timeout = argumentCount >= 2 ? info[1]->Int32Value() : 0;
90 timerId = DOMWindowTimers::setTimeout(workerGlobalScope, action.release(), timeout);
92 timerId = DOMWindowTimers::setInterval(workerGlobalScope, action.release(), timeout);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMTimer.cpp 70 int DOMTimer::install(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot)
72 int timeoutID = context->installNewTimeout(action, timeout, singleShot);
73 InspectorInstrumentation::didInstallTimer(context, timeoutID, timeout, singleShot);
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_syncobj.c 91 GLbitfield flags, GLuint64 timeout)
100 screen->fence_finish(screen, so->fence, timeout)) {
108 GLbitfield flags, GLuint64 timeout)
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/private/
pprio.h 171 PRNetAddr **raddr, void *buf, PRInt32 amount, PRIntervalTime timeout);
179 PRTransmitFileFlags flags, PRIntervalTime timeout);
200 ** interface to AcceptRead, there is no way for us to timeout the Accept;
201 ** this is because when we timeout the Read, we can close the newly
202 ** socket and continue; but when we timeout the accept itself, there is no
203 ** new socket to timeout. So instead, this version of the function is
204 ** provided. After the initial timeout period elapses on the accept()
206 ** continue the accept. If the timeout occurs on the read, it will
228 PRIntervalTime timeout);
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
extension_dict_backend.py 64 def GetExtensionInfoList(self, timeout=None):
65 data = self._browser_backend.Request('', timeout=timeout)
  /external/dropbear/
svr-session.c 80 struct timeval timeout; local
94 if (gettimeofday(&timeout, 0) < 0) {
98 ses.connecttimeout = timeout.tv_sec + AUTH_TIMEOUT;
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/libmtp/src/
libusb-glue.h 59 int timeout; member in struct:_PTP_USB
77 void set_usb_device_timeout(PTP_USB *ptp_usb, int timeout);
78 void get_usb_device_timeout(PTP_USB *ptp_usb, int *timeout);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_syncobj.c 91 GLbitfield flags, GLuint64 timeout)
100 screen->fence_finish(screen, so->fence, timeout)) {
108 GLbitfield flags, GLuint64 timeout)
  /frameworks/base/core/java/android/net/
LinkSocket.java 137 * @param timeout the timeout value in milliseconds or 0 for infinite timeout
141 * @throws SocketTimeoutException if the timeout fires
143 public void connect(String dstName, int dstPort, int timeout)
145 if (DBG) log("connect(dstName, dstPort, timeout) EX");
159 if (DBG) log("connect(dstName, dstPort, timeout) EX");
164 * by the SocketAddress with the specified timeout.
165 * @deprecated Use {@code connect(String dstName, int dstPort, int timeout)}
171 * @throws SocketTimeoutException if the timeout expire
    [all...]
  /frameworks/testing/uiautomator/utils/SleepUtils/SleepHelper/src/com/android/testing/sleephelper/
SetAlarm.java 74 long timeout = -1; local
76 timeout = Long.parseLong(paramString);
80 callSetAndWait(timeout);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.shared_future/
wait_for.pass.cpp 53 assert(f.wait_for(ms(300)) == std::future_status::timeout);
69 assert(f.wait_for(ms(300)) == std::future_status::timeout);
85 assert(f.wait_for(ms(300)) == std::future_status::timeout);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.unique_future/
wait_for.pass.cpp 53 assert(f.wait_for(ms(300)) == std::future_status::timeout);
69 assert(f.wait_for(ms(300)) == std::future_status::timeout);
85 assert(f.wait_for(ms(300)) == std::future_status::timeout);
  /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/chrome/service/cloud_print/
connector_settings.h 58 void SetXmppPingTimeoutSec(int timeout);
85 // Indicate timeout between XMPP pings.
  /external/chromium_org/third_party/WebKit/Source/core/loader/
PingLoader.h 77 void timeout(Timer<PingLoader>*) { delete this; } function in class:WebCore::PingLoader
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
trace_profiler.py 16 self._browser_backend.StartTracing(None, timeout=10)
  /external/chromium_org/tools/telemetry/telemetry/core/
util.py 43 def WaitFor(condition, timeout):
44 """Waits for up to |timeout| secs for the function |condition| to return True.
72 if elapsed_time > timeout:
74 (timeout, GetConditionString()))
77 timeout, GetConditionString(), elapsed_time)
  /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...]

Completed in 164 milliseconds

<<21222324252627282930>>