HomeSort by relevance Sort by last modified time
    Searched defs:timeout (Results 251 - 275 of 314) sorted by null

<<111213

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursesw.h 390 #ifdef timeout
391 inline void UNDEF(timeout)(int delay) { timeout(delay); } function
392 #undef timeout macro
393 #define timeout UNDEF(timeout) macro
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/dvb/
frontend.h 99 int timeout; /* return from ioctl after timeout ms with */ member in struct:dvb_diseqc_slave_reply
  /bionic/libc/kernel/common/linux/
blkdev.h 170 unsigned int timeout; member in struct:request
cdrom.h 190 int timeout; member in struct:cdrom_generic_command
  /development/ndk/platforms/android-3/include/linux/
blkdev.h 170 unsigned int timeout; member in struct:request
cdrom.h 190 int timeout; member in struct:cdrom_generic_command
  /external/bluetooth/bluez/audio/
avdtp.c 314 guint timeout; member in struct:pending_req
597 if (req->timeout)
598 g_source_remove(req->timeout);
    [all...]
  /external/bluetooth/bluez/lib/
sdp.c 1736 struct timeval timeout = { SDP_RESPONSE_TIMEOUT, 0 }; local
    [all...]
  /external/bluetooth/bluez/src/
adapter.c 99 guint discov_timeout_id; /* discoverable timeout id */
101 guint pairable_timeout_id; /* pairable timeout id */
769 uint32_t timeout,
775 if (adapter->discov_timeout == timeout && timeout == 0)
779 adapter_set_discov_timeout(adapter, timeout);
781 adapter->discov_timeout = timeout;
783 write_discoverable_timeout(&adapter->bdaddr, timeout);
789 DBUS_TYPE_UINT32, &timeout);
796 uint32_t timeout,
1429 uint32_t timeout; local
1447 uint32_t timeout; local
2381 int timeout; local
2391 int timeout; local
    [all...]
  /external/iproute2/misc/
ss.c 375 int timeout; member in struct:tcpstat
394 const char *print_ms_timer(int timeout)
398 if (timeout < 0)
399 timeout = 0;
400 secs = timeout/1000;
403 msecs = timeout%1000;
421 const char *print_hz_timer(int timeout)
424 return print_ms_timer(((timeout*1000) + hz-1)/hz);
1159 &s.timer, &s.timeout, &s.retrs, &s.uid, &s.probes, &s.ino,
1189 print_hz_timer(s.timeout),
    [all...]
  /external/kernel-headers/original/linux/
blkdev.h 194 unsigned int timeout; member in struct:request
748 extern long blk_congestion_wait(int rw, long timeout);
  /external/netperf/
netlib.c 1889 struct timeval timeout; local
2359 struct timeval timeout; local
3331 struct timeval timeout; local
    [all...]
  /external/wpa_supplicant/
mlme.c 2545 int timeout = 0; local
    [all...]
  /frameworks/base/core/java/android/app/
IActivityManager.java 284 public boolean shutdown(int timeout) throws RemoteException;
375 public boolean timeout; field in class:IActivityManager.WaitResult
389 dest.writeInt(timeout ? 1 : 0);
408 timeout = source.readInt() != 0;
  /frameworks/base/core/java/android/webkit/
CallbackProxy.java 1413 Message timeout = obtainMessage(JS_TIMEOUT, result); local
    [all...]
  /frameworks/base/libs/ui/
InputDispatcher.cpp 57 // Default input dispatching timeout if there is no focused application or paused window
58 // from which to determine an appropriate dispatching timeout.
224 // Wait for callback or timeout or wake. (make sure we round up, not down)
228 uint64_t timeout = uint64_t(nextWakeupTime - currentTime); local
229 timeout = (timeout + 999999LL) / 1000000LL;
230 timeoutMillis = timeout > INT_MAX ? -1 : int32_t(timeout);
258 // Essentially we start a short timeout when an app switch key (HOME / ENDCALL) has
295 // samples may be appended to this event by the time the throttling timeout
865 nsecs_t timeout = window ? window->dispatchingTimeout : local
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/dhd/sys/
dhd_linux.c 397 /* IOCTL response timeout */
400 /* Idle timeout for backplane clock */
627 * Generalized timeout mechanism. Uses spin sleep with exponential back-off until
2624 int timeout = dhd_ioctl_timeout_msec; local
3036 int timeout = 10 * HZ \/ 1000; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
URLConnectionTest.java 1335 MockResponse timeout = new MockResponse() local
    [all...]
  /packages/apps/Email/src/com/android/exchange/
EasSyncService.java 124 // Command timeout is the the time allowed for reading data from an open connection before an
128 // Connection timeout is the time given to connect to the server before reporting an IOException
149 * We start with an 8 minute timeout, and increase/decrease by 3 minutes at a time. There's
150 * no point having a timeout shorter than 5 minutes, I think; at that point, we can just let
155 * If we ever have to drop the ping timeout, we'll never increase it again. There's no point
156 * going into hysteresis; the NAT timeout isn't going to change without a change in connection,
250 * socket timeout without having thrown an Exception
2072 int timeout = COMMAND_TIMEOUT; local
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
blkdev.h 170 unsigned int timeout; member in struct:request
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
blkdev.h 170 unsigned int timeout; member in struct:request
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
blkdev.h 170 unsigned int timeout; member in struct:request
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
blkdev.h 170 unsigned int timeout; member in struct:request
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
blkdev.h 170 unsigned int timeout; member in struct:request
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
blkdev.h 170 unsigned int timeout; member in struct:request

Completed in 3298 milliseconds

<<111213