/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/webkit/Source/WebCore/plugins/ |
PluginViewNone.cpp | 148 void PluginView::keepAlive(NPP)
|
PluginView.h | 278 static void keepAlive(NPP); 280 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; 138 keepAlive = true; 178 keepAlive = value; 633 if (!keepAlive || nread <= 0) { 704 } while (keepAlive); 771 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/base/media/libstagefright/ |
NuCachedSource2.cpp | 350 bool keepAlive = 356 if (mFetching || keepAlive) { 357 if (keepAlive) { 666 LOGV("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 | 575 void Frame::keepAlive() [all...] |
/external/webkit/Source/WebCore/bindings/v8/ |
ScriptController.cpp | 239 m_frame->keepAlive();
|
V8Proxy.cpp | 442 m_frame->keepAlive(); 494 // Frame::keepAlive method adds the ref count of the frame and sets a 497 m_frame->keepAlive(); 548 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...] |
/prebuilt/common/http-client/ |
httpcore-4.1.jar | |