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

<<11121314151617181920>>

  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/linux/
usbdevice_fs.h 25 __u32 timeout; member in struct:usbdevfs_ctrltransfer
32 unsigned int timeout; member in struct:usbdevfs_bulktransfer
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/linux/
usbdevice_fs.h 25 __u32 timeout; member in struct:usbdevfs_ctrltransfer
32 unsigned int timeout; member in struct:usbdevfs_bulktransfer
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/linux/
usbdevice_fs.h 25 __u32 timeout; member in struct:usbdevfs_ctrltransfer
32 unsigned int timeout; member in struct:usbdevfs_bulktransfer
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/
usbdevice_fs.h 25 __u32 timeout; member in struct:usbdevfs_ctrltransfer
32 unsigned int timeout; member in struct:usbdevfs_bulktransfer
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/
usbdevice_fs.h 25 __u32 timeout; member in struct:usbdevfs_ctrltransfer
32 unsigned int timeout; member in struct:usbdevfs_bulktransfer
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/
usbdevice_fs.h 25 __u32 timeout; member in struct:usbdevfs_ctrltransfer
32 unsigned int timeout; member in struct:usbdevfs_bulktransfer
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/
usbdevice_fs.h 25 __u32 timeout; member in struct:usbdevfs_ctrltransfer
32 unsigned int timeout; member in struct:usbdevfs_bulktransfer
  /system/core/libnetutils/
dhcpclient.c 400 unsigned int timeout; local
414 timeout = TIMEOUT_INITIAL;
423 r = poll(&pfd, 1, timeout);
427 printerr("TIMEOUT\n");
429 if (timeout >= TIMEOUT_MAX) {
439 timeout = timeout * 2;
505 timeout = TIMEOUT_INITIAL;
  /prebuilts/sdk/16/
uiautomator.jar 
  /prebuilts/sdk/17/
uiautomator.jar 
  /bionic/libc/netbsd/resolv/
res_send.c 721 int timeout = (statp->retrans << ns); local
723 timeout /= statp->nscount;
725 if (timeout <= 0) {
726 timeout = 1;
729 __libc_format_log(ANDROID_LOG_DEBUG, "libc", "using timeout of %d sec\n", timeout);
732 return timeout;
937 struct timespec now, timeout, finish; local
949 timeout = evConsTime((long)sec, 0L);
950 finish = evAddTime(now, timeout);
972 struct timespec now, timeout; local
1044 struct timespec now, timeout, finish; local
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetwork.java 389 * timeout, which is the number of microseconds to wait for the event to occur, and it takes
393 * when the timeout is reached (whichever occurs first). Note that there is no difference
394 * between an event occurring and the timeout being reached; the client will have to verify
401 * be returned to the client, or the timeout will be reached, and the results for the key
405 // deferreturn [event] [timeout (ms)] [command]
417 long timeout = Long.parseLong(command.get(2)); local
422 deferredReturn = new DeferredReturn(eventId, ret, timeout);
520 private long timeout; field in class:MonkeySourceNetwork.DeferredReturn
522 public DeferredReturn(int event, MonkeyCommandReturn deferredReturn, long timeout) {
525 this.timeout = timeout
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpServer.java 32 private static final int timeout = 10000; field in class:Support_HttpServer
108 serversocket.setTimeout(timeout);
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSocketImplTest.java 91 int timeout = 10; // wait no more than 10*500 ms for handshake local
97 timeout--;
98 if (timeout < 0) {
149 int timeout = 10; // wait no more than 5 seconds for handshake local
155 timeout--;
156 if (timeout < 0) {
210 int timeout = 10; // wait no more than 5 seconds for handshake local
216 timeout--;
217 if (timeout < 0) {
270 int timeout = 10; // wait no more than 5 seconds for handshak local
331 int timeout = 10; \/\/ wait no more than 5 seconds for handshake local
776 int timeout = 10; \/\/ wait no more than 5 seconds for handshake local
881 int timeout = 10; \/\/ wait no more than 5 seconds for handshake local
937 int timeout = 10; \/\/ wait no more than 5 seconds for handshake local
993 int timeout = 10; \/\/ wait no more than 5 seconds for handshake local
    [all...]
  /external/bluetooth/bluedroid/btif/src/
btif_config.c 764 int timeout; local
765 ret = btif_config_get_int(section, key, "connect time out", &timeout);
766 //debug("btif_config_get_int return:%d, Remote devices:%s, connect time out:%d", ret, key, timeout);
  /external/bluetooth/bluedroid/gki/ulinux/
gki_ulinux.c 610 struct timespec timeout; local
665 /* Compute next timeout:
666 * timeout = (next theoretical expiration) - current time
667 * timeout = (previous time + timeout + delay) - current time
668 * timeout = timeout + delay - (current time - previous time)
669 * timeout += delay - delta */
675 timeout.tv_sec = 0;
679 possible that the timeout value is negative. To protec
    [all...]
  /external/bluetooth/bluedroid/stack/l2cap/
l2c_utils.c 1499 UINT16 timeout; local
2631 UINT16 timeout = p_lcb->idle_timeout; local
    [all...]
  /external/chromium/chrome/browser/
process_singleton_linux.cc 160 // Wait a socket for read for a certain timeout in seconds.
161 // Returns -1 if error occurred, 0 if timeout reached, > 0 if the socket is
163 int WaitSocketForRead(int fd, int timeout) {
169 tv.tv_sec = timeout;
175 // Read a message from a socket fd, with an optional timeout in seconds.
176 // If |timeout| <= 0 then read immediately.
178 ssize_t ReadFromSocket(int fd, char *buf, size_t bufsize, int timeout) {
179 if (timeout > 0) {
180 int rv = WaitSocketForRead(fd, timeout);
827 timeval timeout = {timeout_seconds, 0} local
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp_xauth.c 805 struct timeval timeout; local
906 timeout.tv_sec = 15;
907 timeout.tv_usec = 0;
910 &timeout, 2, &lr);
1038 struct timeval timeout; local
1123 timeout.tv_sec = 15;
1124 timeout.tv_usec = 0;
1127 &timeout, 2, &lr);
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCConnection.java 41 * Timeout for Database.exec()
43 protected int timeout = 1000000; field in class:JDBCConnection
61 * Base time value for timeout handling.
81 if (t1 - t0 > timeout) {
100 if (t1 - t0 > timeout) {
480 public boolean isValid(int timeout) throws SQLException {
  /external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
gki_ulinux.c 451 int timeout = 1000; /* 10 ms per system tick */ local
456 delay.tv_sec = timeout / 1000;
457 delay.tv_nsec = 1000 * 1000 * (timeout%1000);
632 ** timeout - (input) the duration that the task wants to wait
636 ** Returns the event mask of received events or zero if timeout
639 UINT16 GKI_wait (UINT16 flag, UINT32 timeout)
648 GKI_TRACE_3("GKI_wait %d %x %d", rtask, flag, timeout);
685 if (timeout)
687 // timeout = GKI_MS_TO_TICKS(timeout); /* convert from milliseconds to ticks *
    [all...]
  /external/libnfc-nci/src/gki/ulinux/
gki_ulinux.c 451 int timeout = 1000; /* 10 ms per system tick */ local
456 delay.tv_sec = timeout / 1000;
457 delay.tv_nsec = 1000 * 1000 * (timeout%1000);
610 ** timeout - (input) the duration that the task wants to wait
614 ** Returns the event mask of received events or zero if timeout
617 UINT16 GKI_wait (UINT16 flag, UINT32 timeout)
626 GKI_TRACE_3("GKI_wait %d %x %d", rtask, flag, timeout);
663 if (timeout)
665 // timeout = GKI_MS_TO_TICKS(timeout); /* convert from milliseconds to ticks *
    [all...]
  /external/libpcap/
pcap-int.h 98 int timeout; /* timeout specified to pcap_open_live */ member in struct:pcap_md
119 int dag_timeout; /* timeout specified to pcap_open_live.
142 int timeout; member in struct:pcap
  /external/libppp/src/
fsm.h 64 u_int timeout; /* FSM retry frequency */ member in struct:fsm_retry
  /external/netcat/
netcat.c 98 int timeout = -1; variable
225 timeout = atoi(optarg);
227 timeout = strtonum(optarg, 0, INT_MAX / 1000, &errstr);
229 errx(1, "timeout %s: %s", errstr, optarg);
231 timeout *= 1000;
659 if (timeout != -1) {
668 if ((ret = poll(&pfd, 1, timeout)) == 1) {
682 if (timeout != -1 && fcntl(s, F_SETFL, flags) == -1)
782 if ((n = poll(pfd, 2 - dflag, timeout)) < 0) {
1066 \t-w secs\t Timeout for connects and final net reads\n
    [all...]

Completed in 1102 milliseconds

<<11121314151617181920>>