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

1 2

  /external/apache-http/src/org/apache/http/
ConnectionReuseStrategy.java 73 boolean keepAlive(HttpResponse response, HttpContext context);
  /external/apache-http/src/org/apache/http/impl/
NoConnectionReuseStrategy.java 54 public boolean keepAlive(final HttpResponse response, final HttpContext context) {
DefaultConnectionReuseStrategy.java 78 public boolean keepAlive(final HttpResponse response,
144 boolean keepalive = false;
151 keepalive = true;
154 if (keepalive)
  /libcore/luni/src/main/java/libcore/net/http/
HttpConnectionPool.java 32 * <li>{@code http.keepAlive} true if HTTP connections should be pooled at
51 String keepAlive = System.getProperty("http.keepAlive");
52 if (keepAlive != null && !Boolean.parseBoolean(keepAlive)) {
  /external/okhttp/src/main/java/libcore/net/http/
HttpConnectionPool.java 32 * <li>{@code http.keepAlive} true if HTTP and SPDY connections should be
50 String keepAlive = System.getProperty("http.keepAlive");
51 if (keepAlive != null && !Boolean.parseBoolean(keepAlive)) {
  /external/webkit/Source/WebCore/plugins/
PluginViewNone.cpp 148 void PluginView::keepAlive(NPP)
PluginView.h 276 static void keepAlive(NPP);
278 void keepAlive();
PluginView.cpp     [all...]
  /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;
108 keepAlive = true;
148 keepAlive = value;
603 if (!keepAlive || nread <= 0) {
674 } while (keepAlive);
741 psPrint(ps, "Connection: " + ((keepAlive) ? "Keep-Alive" : "Close"));
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowBase.cpp 90 frame->keepAlive();
ScriptController.cpp 149 m_frame->keepAlive();
  /frameworks/base/core/java/android/net/http/
Connection.java 463 private boolean keepAlive(HttpEntity entity,
492 mCanPersist = keepAlive(entity, ver, connType, mHttpContext);
  /frameworks/av/media/libstagefright/
NuCachedSource2.cpp 358 bool keepAlive =
364 if (mFetching || keepAlive) {
365 if (keepAlive) {
675 ALOGV("lowwater = %d bytes, highwater = %d bytes, keepalive = %lld us",
  /libcore/luni/src/main/java/java/net/
Socket.java 449 public void setKeepAlive(boolean keepAlive) throws SocketException {
452 impl.setOption(SocketOptions.SO_KEEPALIVE, Boolean.valueOf(keepAlive));
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
HttpService.java 212 if (!this.connStrategy.keepAlive(response, context)) {
  /external/webkit/Source/WebCore/page/
Frame.h 155 void keepAlive(); // Used to keep the frame alive when running a script that might destroy it.
Frame.cpp 571 void Frame::keepAlive()
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
ScriptController.cpp 239 m_frame->keepAlive();
V8Proxy.cpp 414 m_frame->keepAlive();
463 // Frame::keepAlive method adds the ref count of the frame and sets a
466 m_frame->keepAlive();
514 m_frame->keepAlive();
  /external/apache-http/src/org/apache/http/impl/client/
DefaultRequestDirector.java 468 reuse = reuseStrategy.keepAlive(response, context);
769 if (this.reuseStrategy.keepAlive(response, context)) {
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
PopupMenuChromium.cpp     [all...]
  /external/webkit/Source/WebCore/bridge/
NP_jsobject.cpp 271 PluginView::keepAlive(instance);
  /external/webkit/Source/WebCore/svg/animation/
SVGSMILElement.cpp 201 RefPtr<SVGSMILElement> keepAlive(this);
    [all...]

Completed in 425 milliseconds

1 2