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

1 2 3 4 5 6 7 8 91011>>

  /external/libppp/src/
tun.h 32 u_int32_t timeout; member in union:tun_data::__anon10809
  /external/chromium/third_party/libevent/sample/
time-test.c 36 struct event *timeout = arg; local
45 event_add(timeout, &tv);
51 struct event timeout; local
58 evtimer_set(&timeout, timeout_cb, &timeout);
62 event_add(&timeout, &tv);
  /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...]
  /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...]
  /bionic/libc/kernel/common/linux/netfilter/
xt_IDLETIMER.h 29 __u32 timeout; member in struct:idletimer_tg_info
  /external/chromium/base/test/
test_timeouts.cc 23 int timeout; local
24 base::StringToInt(string_value, &timeout);
25 *value = std::max(*value, timeout);
43 // The timeout values should increase in the order they appear in this block.
77 // The timeout values should be increasing in the right order.
  /external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
prettyload.js 60 function timeout() {
83 } else { timeout(); }
85 } else { timeout(); }
  /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
  /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/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;
  /external/chromium/base/synchronization/
waitable_event_win.cc 62 double timeout = ceil(max_time.InMillisecondsF()); local
63 DWORD result = WaitForSingleObject(handle_, static_cast<DWORD>(timeout));
90 INFINITE); // no 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;
  /external/mockito/src/org/mockito/internal/verification/
VerificationWithTimeoutImpl.java 14 int timeout; field in class:VerificationWithTimeoutImpl
19 this.timeout = millis;
26 while (soFar <= timeout) {
54 return timeout;
  /external/webkit/Source/WebCore/loader/
PingLoader.h 68 void timeout(Timer<PingLoader>*) { delete this; } function in class:WebCore::PingLoader
  /external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
p2p_disconnect.py 40 global timeout
49 def __init__(self,interface_name,wpas_dbus_interface,timeout):
53 self.timeout = timeout
104 # Required for timeout implementation
113 timeout = 5 variable
152 wpas_dbus_interface,timeout)
163 time.sleep(int(p2p_disconnect_test.timeout))
p2p_flush.py 40 global timeout
49 def __init__(self,interface_name,wpas_dbus_interface,timeout):
53 self.timeout = timeout
104 # Required for timeout implementation
113 timeout = 5 variable
151 p2p_flush_test = P2P_Flush(interface_name, wpas_dbus_interface,timeout)
162 time.sleep(int(p2p_flush_test.timeout))
p2p_listen.py 17 print " %s -i <interface_name> [-t <timeout>] \ " \
22 print " -t = timeout = 0s (infinite)"
41 global timeout
50 def __init__(self,interface_name,wpas_dbus_interface,timeout):
52 self.timeout = int(timeout)
104 self.p2p_interface.Listen(int(self.timeout))
107 # Required for timeout implementation
115 timeout = 0 variable
138 # Timeout
    [all...]
  /hardware/ril/libril/
ril_event.h 30 struct timeval timeout; member in struct:ril_event
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Event.c 170 struct timespec timeout; local
185 timeout.tv_sec = now.tv_sec + tv_us / 1000000;
186 timeout.tv_nsec = (tv_us % 1000000) * 1000;
203 funcret = pthread_cond_timedwait(&event->condition, (pthread_mutex_t *)(event->mutex), &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;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
pg.h 48 int timeout; /* number of seconds before timeout */ member in struct:pg_write_hdr
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
pg.h 48 int timeout; /* number of seconds before timeout */ member in struct:pg_write_hdr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
pg.h 48 int timeout; /* number of seconds before timeout */ member in struct:pg_write_hdr
  /bionic/libc/kernel/common/linux/
genlock.h 32 int timeout; member in struct:genlock_lock

Completed in 1686 milliseconds

1 2 3 4 5 6 7 8 91011>>