HomeSort by relevance Sort by last modified time
    Searched full:connecttimeout (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /libcore/ojluni/src/main/java/sun/net/www/protocol/mailto/
MailToURLConnection.java 50 private int connectTimeout = -1;
86 client = new SmtpClient(connectTimeout);
121 connectTimeout = timeout;
126 return (connectTimeout < 0 ? 0 : connectTimeout);
  /external/jetty/src/java/org/eclipse/jetty/client/
SelectConnector.java 88 ConnectTimeout connectTimeout = new ConnectTimeout(channel,destination);
89 _httpClient.schedule(connectTimeout,_httpClient.getConnectTimeout());
90 _connectingChannels.put(channel,connectTimeout);
143 Timeout.Task connectTimeout = _connectingChannels.remove(channel);
144 if (connectTimeout != null)
145 connectTimeout.cancel();
201 Timeout.Task connectTimeout = _connectingChannels.remove(channel);
202 if (connectTimeout != null
    [all...]
  /libcore/ojluni/src/main/java/sun/net/
NetworkClient.java 63 protected int connectTimeout = DEFAULT_CONNECT_TIMEOUT;
171 // connectTimeout & readTimeout (-1 means not set)
174 if (connectTimeout >= 0) {
175 s.connect(new InetSocketAddress(server, port), connectTimeout);
236 connectTimeout = timeout;
240 return connectTimeout;
  /external/okhttp/android/main/java/com/squareup/okhttp/internal/
Platform.java 112 int connectTimeout) throws IOException {
113 socket.connect(address, connectTimeout);
  /external/libmicrohttpd/src/testzzuf/
test_get.c 126 // NOTE: use of CONNECTTIMEOUT without also
170 // NOTE: use of CONNECTTIMEOUT without also
231 // NOTE: use of CONNECTTIMEOUT without also
test_get_chunked.c 149 // NOTE: use of CONNECTTIMEOUT without also
190 // NOTE: use of CONNECTTIMEOUT without also
248 // NOTE: use of CONNECTTIMEOUT without also
test_post.c 185 // NOTE: use of CONNECTTIMEOUT without also
237 // NOTE: use of CONNECTTIMEOUT without also
307 // NOTE: use of CONNECTTIMEOUT without also
test_post_form.c 202 // NOTE: use of CONNECTTIMEOUT without also
253 // NOTE: use of CONNECTTIMEOUT without also
321 // NOTE: use of CONNECTTIMEOUT without also
test_put.c 155 // NOTE: use of CONNECTTIMEOUT without also
206 // NOTE: use of CONNECTTIMEOUT without also
275 // NOTE: use of CONNECTTIMEOUT without also
test_put_chunked.c 161 // NOTE: use of CONNECTTIMEOUT without also
208 // NOTE: use of CONNECTTIMEOUT without also
287 // NOTE: use of CONNECTTIMEOUT without also
test_put_large.c 170 // NOTE: use of CONNECTTIMEOUT without also
222 // NOTE: use of CONNECTTIMEOUT without also
293 // NOTE: use of CONNECTTIMEOUT without also
  /external/libmicrohttpd/src/testcurl/
test_get_sendfile.c 143 /* NOTE: use of CONNECTTIMEOUT without also
192 /* NOTE: use of CONNECTTIMEOUT without also
242 /* NOTE: use of CONNECTTIMEOUT without also
301 /* NOTE: use of CONNECTTIMEOUT without also
437 /* NOTE: use of CONNECTTIMEOUT without also
test_get.c 137 /* NOTE: use of CONNECTTIMEOUT without also
187 /* NOTE: use of CONNECTTIMEOUT without also
238 /* NOTE: use of CONNECTTIMEOUT without also
298 /* NOTE: use of CONNECTTIMEOUT without also
435 /* NOTE: use of CONNECTTIMEOUT without also
581 /* NOTE: use of CONNECTTIMEOUT without also
test_get_chunked.c 179 // NOTE: use of CONNECTTIMEOUT without also
221 // NOTE: use of CONNECTTIMEOUT without also
264 // NOTE: use of CONNECTTIMEOUT without also
316 // NOTE: use of CONNECTTIMEOUT without also
test_large_put.c 177 // NOTE: use of CONNECTTIMEOUT without also
235 // NOTE: use of CONNECTTIMEOUT without also
297 // NOTE: use of CONNECTTIMEOUT without also
368 // NOTE: use of CONNECTTIMEOUT without also
test_postform.c 205 // NOTE: use of CONNECTTIMEOUT without also
261 // NOTE: use of CONNECTTIMEOUT without also
318 // NOTE: use of CONNECTTIMEOUT without also
384 // NOTE: use of CONNECTTIMEOUT without also
test_process_headers.c 175 /* NOTE: use of CONNECTTIMEOUT without also
224 /* NOTE: use of CONNECTTIMEOUT without also
274 /* NOTE: use of CONNECTTIMEOUT without also
333 /* NOTE: use of CONNECTTIMEOUT without also
test_put.c 154 // NOTE: use of CONNECTTIMEOUT without also
210 // NOTE: use of CONNECTTIMEOUT without also
268 // NOTE: use of CONNECTTIMEOUT without also
336 // NOTE: use of CONNECTTIMEOUT without also
test_put_chunked.c 164 // NOTE: use of CONNECTTIMEOUT without also
220 // NOTE: use of CONNECTTIMEOUT without also
278 // NOTE: use of CONNECTTIMEOUT without also
346 // NOTE: use of CONNECTTIMEOUT without also
test_iplimit.c 154 // NOTE: use of CONNECTTIMEOUT without also
243 // NOTE: use of CONNECTTIMEOUT without also
test_long_header.c 134 /* NOTE: use of CONNECTTIMEOUT without also
209 /* NOTE: use of CONNECTTIMEOUT without also
test_timeout.c 198 // NOTE: use of CONNECTTIMEOUT without also
253 // NOTE: use of CONNECTTIMEOUT without also
  /libcore/ojluni/src/main/java/sun/net/www/protocol/ftp/
FtpURLConnection.java 111 private int connectTimeout = NetworkClient.DEFAULT_CONNECT_TIMEOUT;;
200 if (connectTimeout >= 0) {
201 ftp.setConnectTimeout(connectTimeout);
253 if (connectTimeout >= 0) {
254 http.setConnectTimeout(connectTimeout);
274 if (connectTimeout >= 0) {
275 http.setConnectTimeout(connectTimeout);
632 connectTimeout = timeout;
637 return (connectTimeout < 0 ? 0 : connectTimeout);
    [all...]
  /external/okhttp/okcurl/src/main/java/com/squareup/okhttp/curl/
Main.java 100 public int connectTimeout = DEFAULT_TIMEOUT;
175 if (connectTimeout != DEFAULT_TIMEOUT) {
176 client.setConnectTimeout(connectTimeout, SECONDS);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Platform.java 99 int connectTimeout) throws IOException {
100 socket.connect(address, connectTimeout);
188 int connectTimeout) throws IOException {
190 socket.connect(address, connectTimeout);

Completed in 221 milliseconds

1 2 3 4