HomeSort by relevance Sort by last modified time
    Searched defs:timeout (Results 51 - 75 of 1817) sorted by null

1 23 4 5 6 7 8 91011>>

  /bionic/libc/kernel/uapi/linux/
pg.h 27 int timeout; member in struct:pg_write_hdr
  /device/google/contexthub/util/stm32_flash/
spi.c 97 uint16_t timeout = 65535; local
114 timeout --;
115 } while (buffer[0] != CMD_ACK && buffer[0] != CMD_NACK && timeout > 0);
117 if (buffer[0] != CMD_ACK && buffer[0] != CMD_NACK && timeout == 0)
  /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/autotest/client/site_tests/camera_HAL3Perf/
camera_HAL3Perf.py 27 timeout = 60 variable in class:camera_HAL3Perf
92 timeout=self.timeout, ignore_status=True)
  /external/autotest/client/site_tests/cellular_GobiSwitchCarrier/
cellular_GobiSwitchCarrier.py 50 def timeout(self): member in class:cellular_GobiSwitchCarrier
51 self.fail('Timeout')
85 gobject.timeout_add(timeout_secs * 1000, self.timeout)
  /external/curl/docs/examples/
multi-double.c 67 struct timeval timeout; local
82 /* set a suitable timeout to play around with */
83 timeout.tv_sec = 1;
84 timeout.tv_usec = 0;
88 timeout.tv_sec = curl_timeo / 1000;
89 if(timeout.tv_sec > 1)
90 timeout.tv_sec = 1;
92 timeout.tv_usec = (curl_timeo % 1000) * 1000;
120 /* Note that on some platforms 'timeout' may be modified by select().
122 rc = select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
    [all...]
multi-formadd.c 87 struct timeval timeout; local
102 /* set a suitable timeout to play around with */
103 timeout.tv_sec = 1;
104 timeout.tv_usec = 0;
108 timeout.tv_sec = curl_timeo / 1000;
109 if(timeout.tv_sec > 1)
110 timeout.tv_sec = 1;
112 timeout.tv_usec = (curl_timeo % 1000) * 1000;
140 /* Note that on some platforms 'timeout' may be modified by select().
142 rc = select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
    [all...]
multi-post.c 83 struct timeval timeout; local
98 /* set a suitable timeout to play around with */
99 timeout.tv_sec = 1;
100 timeout.tv_usec = 0;
104 timeout.tv_sec = curl_timeo / 1000;
105 if(timeout.tv_sec > 1)
106 timeout.tv_sec = 1;
108 timeout.tv_usec = (curl_timeo % 1000) * 1000;
136 /* Note that on some platforms 'timeout' may be modified by select().
138 rc = select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
    [all...]
  /external/curl/tests/libtest/
lib1501.c 61 struct timeval timeout; local
70 timeout.tv_sec = 0;
71 timeout.tv_usec = 100000L; /* 100 ms */
81 select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
lib1502.c 84 struct timeval timeout; local
93 timeout.tv_sec = 1;
94 timeout.tv_usec = 0;
100 select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
lib502.c 54 struct timeval timeout; local
58 timeout.tv_sec = 0;
59 timeout.tv_usec = 100000L; /* 100 ms */
76 select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
lib507.c 57 struct timeval timeout; local
66 timeout.tv_sec = 1;
67 timeout.tv_usec = 0;
73 select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
lib555.c 118 struct timeval timeout; local
122 timeout.tv_sec = 0;
123 timeout.tv_usec = 100000L; /* 100 ms */
144 select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
lib560.c 74 struct timeval timeout; local
85 /* set a suitable timeout to play around with */
86 timeout.tv_sec = 1;
87 timeout.tv_usec = 0;
94 select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
98 /* timeout or readable/writable sockets */
lib573.c 69 struct timeval timeout; local
73 timeout.tv_sec = 0;
74 timeout.tv_usec = 100000L; /* 100 ms */
91 select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
lib575.c 79 struct timeval timeout; local
85 timeout.tv_sec = 0;
86 timeout.tv_usec = 100000L; /* 100 ms */
96 select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
lib591.c 79 /* server connection timeout */
92 long timeout = -99; local
110 multi_timeout(multi, &timeout);
112 /* At this point, timeout is guaranteed to be greater or equal than -1. */
114 if(timeout != -1L) {
115 int itimeout = (timeout > (long)INT_MAX) ? INT_MAX : (int)timeout;
  /external/iptables/include/linux/netfilter/
xt_CT.h 31 char timeout[32]; member in struct:xt_ct_target_info_v1
  /external/junit/src/main/java/org/junit/rules/
Timeout.java 10 * The Timeout Rule applies the same timeout to all test methods in a class:
15 * public Timeout globalTimeout= new Timeout(20);
29 * Each test is run in a new thread. If the specified timeout elapses before
34 * A specified timeout of 0 will be interpreted as not set, however tests will
40 public class Timeout implements TestRule {
41 private final long timeout; field in class:Timeout
54 * Create a {@code Timeout} instance with the timeout specifie
    [all...]
  /external/junit-params/src/test/java/junitparams/
RulesTest.java 11 import org.junit.rules.Timeout;
32 public Timeout timeout = new Timeout(0); field in class:RulesTest
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_CT.h 36 char timeout[32]; member in struct:xt_ct_target_info_v1
  /external/kernel-headers/original/uapi/linux/
pg.h 49 int timeout; /* number of seconds before timeout */ member in struct:pg_write_hdr
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
KeepAliveHttpsTransportSE.java 30 private final int timeout; field in class:KeepAliveHttpsTransportSE
33 public KeepAliveHttpsTransportSE(String host, int port, String file, int timeout) {
34 super(host, port, file, timeout);
38 this.timeout = timeout;
52 file, timeout);
  /external/libchrome/base/test/
test_timeouts.cc 26 // timeout multiplier. See http://crbug.com/412471
48 int timeout; local
50 timeout = kAlmostInfiniteTimeoutMs;
52 base::StringToInt(string_value, &timeout);
53 *value = std::max(*value, timeout);
76 // The timeout values should increase in the order they appear in this block.
111 // Test launcher timeout is independent from anything above action timeout.
115 // The timeout values should be increasing in the right order.
  /external/libdrm/tests/kms/
kms-steal-crtc.c 123 struct timeval timeout; local
126 memset(&timeout, 0, sizeof(timeout));
127 timeout.tv_sec = 5;
128 timeout.tv_usec = 0;
133 err = select(nfds, &fds, NULL, NULL, &timeout);

Completed in 1690 milliseconds

1 23 4 5 6 7 8 91011>>