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

12 3 4 5 6 7 8 91011>>

  /external/libppp/src/
tun.h 32 u_int32_t timeout; member in union:tun_data::__anon22855
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/
cv_status.pass.cpp 12 // enum class cv_status { no_timeout, timeout };
20 assert(std::cv_status::timeout == 1);
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
Test.java 23 public Test(String name, int timeout) {
25 mTimeout = timeout;
  /development/ndk/sources/android/libportable/arch-mips/
epoll.c 25 int WRAP(epoll_wait)(int epfd, struct epoll_event *events, int max, int timeout)
27 return REAL(epoll_wait)(epfd, events, max, timeout);
  /external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
ScalableTimeout.java 16 public static long ScaleTimeout(long timeout) {
26 return (long)(timeout * sTimeoutScale);
  /external/chromium_org/build/android/pylib/utils/
watchdog_timer.py 5 """WatchdogTimer timeout objects."""
11 """A resetable timeout-based watchdog.
16 def __init__(self, timeout):
20 timeout: The timeout in seconds. If timeout is None it will never timeout.
23 self._timeout = timeout
26 """Resets the timeout countdown."""
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMWindowTimers.h 44 int setTimeout(EventTarget*, PassOwnPtr<ScheduledAction>, int timeout);
45 int setInterval(EventTarget*, PassOwnPtr<ScheduledAction>, int timeout);
WindowTimers.idl 32 [Custom] long setTimeout(any handler, [Default=Undefined] optional long timeout);
34 [Custom] long setInterval(any handler, [Default=Undefined] optional long timeout);
  /external/chromium_org/tools/telemetry/telemetry/core/
web_contents.py 28 timeout=DEFAULT_WEB_CONTENTS_TIMEOUT):
29 self._inspector_backend.WaitForDocumentReadyStateToBeComplete(timeout)
32 timeout=DEFAULT_WEB_CONTENTS_TIMEOUT):
34 timeout)
36 def ExecuteJavaScript(self, expr, timeout=DEFAULT_WEB_CONTENTS_TIMEOUT):
41 self._inspector_backend.ExecuteJavaScript(expr, timeout)
43 def EvaluateJavaScript(self, expr, timeout=DEFAULT_WEB_CONTENTS_TIMEOUT):
55 return self._inspector_backend.EvaluateJavaScript(expr, timeout)
tab.py 46 timeout=DEFAULT_TAB_TIMEOUT)
70 def Screenshot(self, timeout=DEFAULT_TAB_TIMEOUT):
72 return self._inspector_backend.Screenshot(timeout)
75 self, action_function, timeout=DEFAULT_TAB_TIMEOUT):
80 the timeout has been exceeded.
83 action_function, timeout)
86 timeout=DEFAULT_TAB_TIMEOUT):
93 self._inspector_backend.Navigate(url, script_to_evaluate_on_commit, timeout)
95 def GetCookieByName(self, name, timeout=DEFAULT_TAB_TIMEOUT):
97 return self._inspector_backend.GetCookieByName(name, timeout)
    [all...]
  /external/mdnsresponder/mDNSPosix/
ExampleClientApp.c 53 struct timeval timeout; local
61 // 2. Set up the timeout.
63 // so we set an effectively infinite timeout
64 timeout.tv_sec = 0x3FFFFFFF;
65 timeout.tv_usec = 0;
67 // 3. Give the mDNSPosix layer a chance to add its information to the fd_set and timeout
68 mDNSPosixGetFDSet(m, &nfds, &readfds, &timeout);
71 verbosedebugf("select(%d, %d.%06d)", nfds, timeout.tv_sec, timeout.tv_usec);
72 result = select(nfds, &readfds, NULL, NULL, &timeout);
    [all...]
  /bionic/libc/private/
bionic_futex.h 36 extern int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout);
40 extern int __futex_syscall4(volatile void *ftx, int op, int val, const struct timespec *timeout);
58 extern int __futex_wait_ex(volatile void *ftx, int pshared, int val, const struct timespec *timeout);
  /external/chromium_org/sandbox/win/wow_helper/
target_code.cc 19 LARGE_INTEGER timeout; local
20 timeout.QuadPart = -(5 * 10000000); // 5 seconds.
24 TRUE, &timeout);
  /frameworks/base/core/java/android/os/
ConditionVariable.java 107 * timeout milliseconds have passed.
112 * @param timeout the minimum time to wait in milliseconds.
115 * because of the timeout.
117 public boolean block(long timeout)
122 if (timeout != 0) {
125 long end = now + timeout;
  /hardware/qcom/display/msm8960/libgenlock/
genlock.h 53 #define GENLOCK_MAX_TIMEOUT 1000 // Max 1s timeout
86 * read. An optional timeout value can be specified.
87 * By default, there is no timeout.
91 * @param: timeout value in ms. GENLOCK_MAX_TIMEOUT is the maximum timeout
97 int timeout);
111 * @param: timeout value for the wait.
114 genlock_status_t genlock_wait(native_handle_t *buffer_handle, int timeout);
120 * @param: timeout value for the wait.
124 int timeout);
    [all...]
  /hardware/qcom/display/msm8x26/libgenlock/
genlock.h 53 #define GENLOCK_MAX_TIMEOUT 1000 // Max 1s timeout
86 * read. An optional timeout value can be specified.
87 * By default, there is no timeout.
91 * @param: timeout value in ms. GENLOCK_MAX_TIMEOUT is the maximum timeout
97 int timeout);
111 * @param: timeout value for the wait.
114 genlock_status_t genlock_wait(native_handle_t *buffer_handle, int timeout);
120 * @param: timeout value for the wait.
124 int timeout);
    [all...]
  /bionic/libc/bionic/
pselect.c 34 const struct timespec* timeout, const sigset_t* sigmask)
43 if (timeout != NULL) {
45 tv.tv_sec = timeout->tv_sec;
46 tv.tv_usec = (timeout->tv_nsec + 999)/1000; // round up
  /bionic/libc/kernel/common/linux/netfilter/
xt_IDLETIMER.h 29 __u32 timeout; member in struct:idletimer_tg_info
  /external/apache-harmony/support/src/test/java/tests/support/
Support_ServerSocket.java 30 public void setTimeout(int timeout);
  /external/apache-http/src/org/apache/http/
HttpConnection.java 69 * that by attempting a read with a very small timeout. Thus this
80 * Sets the socket timeout value.
82 * @param timeout timeout value in milliseconds
84 void setSocketTimeout(int timeout);
87 * Returns the socket timeout value.
89 * @return positive value in milliseconds if a timeout is set,
90 * <code>0</code> if timeout is disabled or <code>-1</code> if
91 * timeout is undefined.
  /external/apache-http/src/org/apache/http/conn/
ClientConnectionRequest.java 44 * the timeout expires, or the connection manager is
52 * @param timeout the timeout, 0 or negative for no timeout
53 * @param tunit the unit for the <code>timeout</code>,
54 * may be <code>null</code> only if there is no timeout
60 * in case of a timeout
64 ManagedClientConnection getConnection(long timeout, TimeUnit tunit)
  /external/chromium_org/tools/telemetry/telemetry/core/chrome/
inspector_runtime.py 20 def Execute(self, expr, timeout=60):
25 self.Evaluate(expr + '; 0;', timeout)
27 def Evaluate(self, expr, timeout=60):
46 res = self._inspector_backend.SyncRequest(request, timeout)
  /external/chromium_org/v8/tools/testrunner/objects/
context.py 30 def __init__(self, arch, mode, shell_dir, mode_flags, verbose, timeout,
37 self.timeout = timeout
43 return [self.arch, self.mode, self.mode_flags, self.timeout, self.isolates,
  /external/iptables/include/linux/netfilter/
xt_IDLETIMER.h 42 __u32 timeout; member in struct:idletimer_tg_info
  /external/kernel-headers/original/linux/netfilter/
xt_IDLETIMER.h 42 __u32 timeout; member in struct:idletimer_tg_info

Completed in 926 milliseconds

12 3 4 5 6 7 8 91011>>