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

1 2 3 4

  /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...]
  /external/webkit/Source/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/nist-sip/java/javax/sip/header/
SubscriptionStateHeader.java 14 String TIMEOUT = "Timeout";
  /development/tools/emulator/test-apps/GpsLocationTest/src/com/android/emulator/gps/test/
GpsLocationTest.java 43 private static final int TIMEOUT = 5000;
63 this.wait(TIMEOUT);
  /external/dhcpcd/dhcpcd-hooks/
20-dns.conf 30 BOUND|INFORM|REBIND|REBOOT|RENEW|TIMEOUT) set_dns_props;;
  /packages/apps/Email/tests/src/com/android/email/activity/
MessageFileViewTest.java 36 private static int TIMEOUT = 10; // in seconds
87 }, TIMEOUT);
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
SelectorTest.java 55 NULL, TIMEOUT, NOW
244 assert_select_OP_ACCEPT(SelectType.TIMEOUT, 0);
245 assert_select_OP_CONNECT(SelectType.TIMEOUT, 0);
246 assert_select_OP_READ(SelectType.TIMEOUT, 0);
247 assert_select_OP_WRITE(SelectType.TIMEOUT, 0);
249 assert_select_OP_ACCEPT(SelectType.TIMEOUT, WAIT_TIME);
250 assert_select_OP_CONNECT(SelectType.TIMEOUT, WAIT_TIME);
251 assert_select_OP_READ(SelectType.TIMEOUT, WAIT_TIME);
252 assert_select_OP_WRITE(SelectType.TIMEOUT, WAIT_TIME);
259 assert_select_SelectorClosed(SelectType.TIMEOUT, 0)
    [all...]
  /external/iptables/iptables/
iptables-apply 13 TIMEOUT=10
52 -t | --timeout Specify the timeout in seconds (default: $TIMEOUT)
59 LONGOPTS="timeout:,version,help";
68 eval TIMEOUT=$opt
69 case "$TIMEOUT" in
72 echo "E: non-numeric timeout value." >&2
84 (-t|--timeout) OPT_STATE=SET_TIMEOUT;;
150 read -n1 -t "${TIMEOUT:-15}" ret 2>&1 ||
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
error.js 23 shouldBe('error.TIMEOUT', '3');
timeout-clear-watch.js 12 shouldBe('error.code', 'error.TIMEOUT');
13 shouldBe('error.message', '"Timeout expired"');
17 timeout: 0
  /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/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/experiments/
SequenceExperiment.java 65 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;
  /external/clang/utils/ABITest/layout/
Makefile 10 TIMEOUT := 5
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
result_summary.py 88 if result.type == test_expectations.CRASH or result.type == test_expectations.TIMEOUT:
  /cts/tests/tests/os/src/android/os/cts/
MessageQueueTest.java 36 private static final long TIMEOUT = 1000;
110 return mIdleLatch.await(TIMEOUT, TimeUnit.MILLISECONDS);
204 public void doTest(long timeout, long interval) throws InterruptedException {
209 long endTime = now + timeout;
  /cts/tests/tests/webkit/src/android/webkit/cts/
HttpAuthHandlerTest.java 36 private static final long TIMEOUT = 10000;
136 new DelayedCheck(TIMEOUT) {
  /development/tools/emulator/system/camera/
EmulatedCameraDevice.h 373 /* A timeout has occurred. */
374 TIMEOUT,
388 * timeout - Timeout in microseconds. 0 indicates no timeout (wait
393 SelectRes Select(int fd, int timeout);

Completed in 416 milliseconds

1 2 3 4