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

1 2 3

  /external/apache-http/src/org/apache/http/conn/params/
ConnManagerPNames.java 44 * Defines the timeout in milliseconds used when retrieving an instance of
51 public static final String TIMEOUT = "http.conn-manager.timeout";
ConnManagerParamBean.java 48 public void setTimeout (final long timeout) {
49 params.setLongParameter(ConnManagerPNames.TIMEOUT, timeout);
ConnManagerParams.java 56 * Returns the timeout in milliseconds used when retrieving a
60 * @return timeout in milliseconds.
66 return params.getLongParameter(TIMEOUT, 0);
70 * Sets the timeout in milliseconds used when retrieving a
74 * @param timeout the timeout in milliseconds
76 public static void setTimeout(final HttpParams params, long timeout) {
80 params.setLongParameter(TIMEOUT, timeout);
  /system/core/nexus/
DhcpEvent.h 26 static const int TIMEOUT = 4;
DhcpEvent.cpp 33 else if (val == DhcpEvent::TIMEOUT)
34 strncpy(buffer, "TIMEOUT", max);
50 else if (!strcasecmp(buffer, "TIMEOUT"))
51 return DhcpEvent::TIMEOUT;
  /hardware/qcom/gps/loc_api/libloc_api-rpc/gen-3200/
loc_api_clnt.c 9 /* Default timeout can be changed using clnt_control() */
10 static struct timeval TIMEOUT = { 25, 0 };
18 TIMEOUT));
27 TIMEOUT));
36 TIMEOUT));
45 TIMEOUT));
54 TIMEOUT));
63 TIMEOUT));
72 TIMEOUT));
81 TIMEOUT));
    [all...]
  /cts/tools/host/src/com/android/cts/
ProgressObserver.java 35 ProgressPrinter.DELAY, ProgressPrinter.TIMEOUT);
54 public final static int TIMEOUT = 2000;
HostTimer.java 37 private final static int TIMEOUT = 3;
108 * @return If timeout, return true; else return false.
111 return (mStatus == TIMEOUT);
146 * @param timeout If true, the cancellation is caused by timer timing out;
149 public void cancel(boolean timeout) {
154 if (timeout) {
155 mStatus = TIMEOUT;
  /external/webkit/WebCore/page/
PositionError.idl 34 const unsigned short TIMEOUT = 3;
PositionError.h 40 TIMEOUT = 3
  /hardware/qcom/gps/loc_api/libloc_api-rpc/gen-1240/
loc_api_clnt.c 9 /* Default timeout can be changed using clnt_control() */
10 static struct timeval TIMEOUT = { 25, 0 };
18 TIMEOUT));
27 TIMEOUT));
36 TIMEOUT));
45 TIMEOUT));
54 TIMEOUT));
63 TIMEOUT));
72 TIMEOUT));
81 TIMEOUT));
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
timeout-zero.js 1 description("Tests that when timeout is zero (and maximumAge is too), the error callback is called immediately with code TIMEOUT.");
11 shouldBe('error.code', 'error.TIMEOUT');
12 shouldBe('error.message', '"Timeout expired"');
16 timeout: 0
error.js 20 shouldBe('error.TIMEOUT', '3');
timeout-clear-watch.js 11 shouldBe('error.code', 'error.TIMEOUT');
12 shouldBe('error.message', '"Timeout expired"');
16 timeout: 0
  /external/nist-sip/java/javax/sip/header/
SubscriptionStateHeader.java 14 String TIMEOUT = "Timeout";
  /external/dhcpcd/dhcpcd-hooks/
20-dns.conf 30 BOUND|INFORM|REBIND|REBOOT|RENEW|TIMEOUT) set_dns_props;;
50-yp.conf 47 BOUND|INFORM|REBIND|REBOOT|RENEW|TIMEOUT) make_yp_conf;;
50-ntp.conf 87 BOUND|INFORM|REBIND|REBOOT|RENEW|TIMEOUT) add_ntp_conf add;;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/experiments/
SequenceExperiment.java 64 return TIMEOUT * getTrials();
LoopbackExperiment.java 37 protected static final int TIMEOUT = 10;
77 int timeout = duration + 2 * END_DELAY_MS; local
79 mRecorder.join(timeout);
110 return TIMEOUT;
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
SelectorTest.java 68 NULL, TIMEOUT, NOW
318 notes = "Verifies select(long) method for Selector registered with SelectionKeys.OP_ACCEPT, SelectionKeys.OP_CONNECT, SelectionKeys.OP_READ, SelectionKeys.OP_WRITE keys and different timeout's values.",
323 assert_select_OP_ACCEPT(SelectType.TIMEOUT, 0);
324 assert_select_OP_CONNECT(SelectType.TIMEOUT, 0);
325 assert_select_OP_READ(SelectType.TIMEOUT, 0);
326 assert_select_OP_WRITE(SelectType.TIMEOUT, 0);
328 assert_select_OP_ACCEPT(SelectType.TIMEOUT, WAIT_TIME);
329 assert_select_OP_CONNECT(SelectType.TIMEOUT, WAIT_TIME);
330 assert_select_OP_READ(SelectType.TIMEOUT, WAIT_TIME);
331 assert_select_OP_WRITE(SelectType.TIMEOUT, WAIT_TIME)
    [all...]
  /frameworks/base/core/java/android/net/http/
IdleCache.java 43 /* six second timeout for connections */
44 private final static int TIMEOUT = 6 * 1000;
82 entry.mTimeout = time + TIMEOUT;
  /cts/tests/tests/webkit/src/android/webkit/cts/
HttpAuthHandlerTest.java 36 private static final long TIMEOUT = 10000;
136 new DelayedCheck(TIMEOUT) {
  /cts/tests/tests/os/src/android/os/cts/
MessageQueueTest.java 39 private static final long TIMEOUT = 1000;
79 tester.doTest(TIMEOUT, INTERVAL);
100 tester.doTest(TIMEOUT, INTERVAL);
165 public void doTest(long timeout, long interval) throws InterruptedException {
169 long endTime = now + timeout;
254 public void doTest(long timeout, long interval) throws InterruptedException {
259 long endTime = now + timeout;
  /external/dnsmasq/src/
config.h 23 #define TIMEOUT 10 /* drop UDP queries after TIMEOUT seconds */

Completed in 1283 milliseconds

1 2 3