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

1 2 3

  /external/apache-http/src/org/apache/http/
ConnectionReuseStrategy.java 78 boolean keepAlive(HttpResponse response, HttpContext context);
  /external/libgdx/gdx/src/com/badlogic/gdx/net/
SocketHints.java 49 public boolean keepAlive = true;
NetJavaSocketImpl.java 67 socket.setKeepAlive(hints.keepAlive);
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
Redrawer.java 21 private boolean keepAlive;
67 keepAlive = false;
73 keepAlive = true;
75 while(keepAlive) {
  /external/apache-http/src/org/apache/http/impl/
NoConnectionReuseStrategy.java 59 public boolean keepAlive(final HttpResponse response, final HttpContext context) {
DefaultConnectionReuseStrategy.java 83 public boolean keepAlive(final HttpResponse response,
149 boolean keepalive = false;
156 keepalive = true;
159 if (keepalive)
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/executor/
FifoPriorityThreadPoolExecutor.java 30 public FifoPriorityThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAlive, TimeUnit timeUnit,
32 super(corePoolSize, maximumPoolSize, keepAlive, timeUnit, new PriorityBlockingQueue<Runnable>(), threadFactory);
  /external/webrtc/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
WebRtcAudioRecord.java 64 private volatile boolean keepAlive = true;
78 while (keepAlive) {
85 keepAlive = false;
105 keepAlive = false;
WebRtcAudioTrack.java 56 private volatile boolean keepAlive = true;
83 while (keepAlive) {
101 keepAlive = false;
133 keepAlive = false;
  /frameworks/base/tests/CoreTests/android/core/
TestWebServer.java 82 boolean keepAlive = true;
130 keepAlive = true;
170 keepAlive = value;
674 if (!keepAlive || nread <= 0) {
745 } while (keepAlive);
806 psPrint(ps, "Connection: " + ((keepAlive) ? "Keep-Alive" : "Close"));
TestHttpClient.java 112 public boolean keepAlive(final HttpResponse response) {
113 return this.connStrategy.keepAlive(response, this.context);
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 75 boolean keepAlive = true;
102 keepAlive = true;
142 keepAlive = value;
576 if (!keepAlive || nread <= 0) {
647 } while (keepAlive);
715 psPrint(ps, "Connection: " + ((keepAlive) ? "Keep-Alive" : "Close"));
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
ConnectionPool.java 40 * <li>{@code http.keepAlive} true if HTTP and SPDY connections should be
60 String keepAlive = System.getProperty("http.keepAlive");
65 if (keepAlive != null && !Boolean.parseBoolean(keepAlive)) {
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DelegatingSSLSocket.java 180 @Override public void setKeepAlive(boolean keepAlive) throws SocketException {
181 delegate.setKeepAlive(keepAlive);
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3IOStreamBase.cpp 226 sp<Camera3IOStreamBase> keepAlive(this);
  /frameworks/av/media/libstagefright/
NuCachedSource2.cpp 404 bool keepAlive =
410 if (mFetching || keepAlive) {
411 if (keepAlive) {
740 ALOGV("lowwater = %zu bytes, highwater = %zu bytes, keepalive = %lld us",
  /libcore/ojluni/src/main/java/sun/net/www/http/
HttpClient.java 146 String keepAlive = java.security.AccessController.doPrivileged(
147 new sun.security.action.GetPropertyAction("http.keepAlive"));
152 if (keepAlive != null) {
153 keepAliveProp = Boolean.valueOf(keepAlive).booleanValue();
167 * to true if the system property http.keepAlive isn't set.
292 logFinest("KeepAlive stream retrieved from the cache, " + ret);
878 logFinest("KeepAlive stream used: " + url);
    [all...]
  /external/apache-http/android/src/android/net/http/
Connection.java 514 private boolean keepAlive(HttpEntity entity,
543 mCanPersist = keepAlive(entity, ver, connType, mHttpContext);
  /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
TestDocumentsProvider.java 210 public Object keepAlive;
288 result.keepAlive = task;
  /external/apache-http/src/org/apache/http/protocol/
HttpService.java 217 if (!this.connStrategy.keepAlive(response, context)) {
  /external/nanohttpd/core/src/main/java/fi/iki/elonen/
NanoHTTPD.java 833 boolean keepAlive = protocolVersion.equals("HTTP/1.1") && (connection == null || !connection.matches("(?i).*close.*"));
851 r.setKeepAlive(keepAlive);
854 if (!keepAlive || "close".equalsIgnoreCase(r.getHeader("connection"))) {
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
DefaultRequestDirector.java 482 reuse = reuseStrategy.keepAlive(response, context);
783 if (this.reuseStrategy.keepAlive(response, context)) {
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
DefaultRequestDirector.java 509 reuse = reuseStrategy.keepAlive(response, context);
    [all...]
  /external/skia/bench/
nanobench.cpp 116 DEFINE_bool(keepAlive, false, "Print a message every so often so that we don't time out");
    [all...]
  /external/robolectric/v1/lib/main/
httpcore-4.0.1.jar 

Completed in 1741 milliseconds

1 2 3