HomeSort by relevance Sort by last modified time
    Searched refs:timeout (Results 1 - 25 of 1525) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2003-11-04-OutOfMemory.c 3 void schedule_timeout(signed long timeout)
5 switch (timeout)
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_input.py 35 def __init__(self, filename, timeout):
39 timeout: Timeout in msecs the driver should use while running the test
43 self.timeout = timeout
  /cts/libs/util/src/android/cts/util/
PollingCheck.java 30 public PollingCheck(long timeout) {
31 mTimeout = timeout;
41 long timeout = mTimeout; local
42 while (timeout > 0) {
53 timeout -= TIME_SLICE;
56 Assert.fail("unexpected timeout");
59 public static void check(CharSequence message, long timeout, Callable<Boolean> condition)
61 while (timeout > 0) {
67 timeout -= TIME_SLICE;
  /external/chromium/net/socket/
client_socket_pool.cc 11 // TODO(ziadh): Change this timeout after getting histogram data on how long it
25 void ClientSocketPool::set_unused_idle_socket_timeout(int timeout) {
26 g_unused_idle_socket_timeout = timeout;
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
Configurator.java 35 // This short timeout to make sure we get the very last in cases where the above isn't true.
62 * Sets the timeout for waiting for the user interface to go into an idle
68 * timeout elapses (whichever occurs first), the object will start to wait
72 * @param timeout Timeout value in milliseconds
76 public Configurator setWaitForIdleTimeout(long timeout) {
77 mWaitForIdleTimeout = timeout;
82 * Gets the current timeout used for waiting for the user interface to go
88 * timeout elapses (whichever occurs first), the object will start to wait
92 * @return Current timeout value in millisecond
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
FocusIndicator.java 21 public void showSuccess(boolean timeout);
22 public void showFail(boolean timeout);
  /packages/apps/Gallery2/src/com/android/camera/ui/
FocusIndicator.java 21 public void showSuccess(boolean timeout);
22 public void showFail(boolean timeout);
  /external/nist-sip/java/javax/sip/
TimeoutEvent.java 4 private Timeout mTimeout;
7 Timeout timeout) {
9 mTimeout = timeout;
13 Timeout timeout) {
15 mTimeout = timeout;
18 public Timeout getTimeout() {
  /system/core/debuggerd/
getevent.h 22 int get_event(struct input_event* event, int timeout);
  /packages/apps/Stk/src/com/android/stk/
StkApp.java 39 // UI timeout, 30 seconds - used for menues and input
42 // Tone default timeout - 2 seconds
52 int timeout = 0; local
56 timeout = 1000 * 60;
59 timeout = 1000 / 10;
63 timeout = 1000;
66 timeout *= duration.timeInterval;
68 return timeout;
  /system/core/init/
watchdogd.c 35 int timeout; local
48 timeout = interval + margin;
56 ret = ioctl(fd, WDIOC_SETTIMEOUT, &timeout);
58 ERROR("watchdogd: Failed to set timeout to %d: %s\n", timeout, strerror(errno));
59 ret = ioctl(fd, WDIOC_GETTIMEOUT, &timeout);
61 ERROR("watchdogd: Failed to get timeout: %s\n", strerror(errno));
63 if (timeout > margin)
64 interval = timeout - margin;
67 ERROR("watchdogd: Adjusted interval to timeout returned by driver: timeout %d, interval %d, margin %d\n"
    [all...]
  /external/wpa_supplicant_8/src/utils/
eloop_none.c 42 struct dl_list timeout; member in struct:eloop_data
59 dl_list_init(&eloop.timeout);
115 struct eloop_timeout *timeout, *tmp; local
118 timeout = os_zalloc(sizeof(*timeout));
119 if (timeout == NULL)
121 if (os_get_time(&timeout->time) < 0) {
122 os_free(timeout);
125 now_sec = timeout->time.sec;
126 timeout->time.sec += secs
169 struct eloop_timeout *timeout, *prev; local
192 struct eloop_timeout *timeout, *prev; local
325 struct eloop_timeout *timeout; local
387 struct eloop_timeout *timeout, *prev; local
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpServerSocket.java 34 private int timeout = 8000; field in class:Support_HttpServerSocket
48 instance.setSoTimeout(timeout);
55 * timeout for the server.
57 public void setTimeout(int timeout) {
58 this.timeout = timeout;
  /cts/tests/tests/webkit/src/android/webkit/cts/
ChromeClient.java 40 public synchronized ConsoleMessage.MessageLevel getMessageLevel(int timeout) {
41 for(; timeout > 0; timeout -= 1000) {
  /system/netd/
IdletimerController.h 27 int addInterfaceIdletimer(const char *iface, uint32_t timeout,
29 int removeInterfaceIdletimer(const char *iface, uint32_t timeout,
40 int modifyInterfaceIdletimer(IptOp op, const char *iface, uint32_t timeout,
  /external/libppp/src/
tun.h 32 u_int32_t timeout; member in union:tun_data::__anon10807
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.condition/
cv_status.pass.cpp 12 // enum class cv_status { no_timeout, timeout };
20 assert(std::cv_status::timeout == 1);
  /system/core/include/cutils/
abort_socket.h 69 /* Blocking socket I/O with timeout.
72 * timeout is in ms, use -1 to indicate no timeout. On timeout -1 is returned
78 socklen_t addrlen, int timeout);
81 socklen_t *addrlen, int timeout);
83 int asocket_read(struct asocket *s, void *buf, size_t count, int timeout);
86 int timeout);
  /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/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 35 extern int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout);
39 extern int __futex_syscall4(volatile void *ftx, int op, int val, const struct timespec *timeout);
57 extern int __futex_wait_ex(volatile void *ftx, int pshared, int val, const struct timespec *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/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

Completed in 827 milliseconds

1 2 3 4 5 6 7 8 91011>>