HomeSort by relevance Sort by last modified time
    Searched refs:keepAlive (Results 1 - 25 of 29) 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/org/apache/harmony/luni/internal/net/www/protocol/http/
HttpConnectionPool.java 29 * <li>{@code http.keepAlive} true if HTTP connections should be pooled at
57 String keepAlive = System.getProperty("http.keepAlive");
58 if (keepAlive != null && !Boolean.parseBoolean(keepAlive)) {
  /external/webkit/WebCore/plugins/
PluginViewNone.cpp 123 void PluginView::keepAlive(NPP)
PluginView.h 245 static void keepAlive(NPP);
246 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"));
  /frameworks/base/media/libstagefright/
NuCachedSource2.cpp 272 bool keepAlive =
278 if (mFetching || keepAlive) {
279 if (keepAlive) {
  /external/webkit/WebCore/bindings/js/
JSDOMWindowBase.cpp 98 frame->keepAlive();
ScriptController.cpp 136 m_frame->keepAlive();
  /frameworks/base/core/java/android/net/http/
Connection.java 464 private boolean keepAlive(HttpEntity entity,
493 mCanPersist = keepAlive(entity, ver, connType, mHttpContext);
  /libcore/luni/src/main/java/java/net/
Socket.java 543 * @param keepAlive
549 public void setKeepAlive(boolean keepAlive) throws SocketException {
552 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/WebCore/page/
Frame.h 131 void keepAlive(); // Used to keep the frame alive when running a script that might destroy it.
Frame.cpp     [all...]
  /external/webkit/WebCore/bindings/v8/
ScriptController.cpp 241 m_frame->keepAlive();
V8Proxy.cpp 450 m_frame->keepAlive();
499 // Frame::keepAlive method adds the ref count of the frame and sets a
502 m_frame->keepAlive();
530 m_frame->keepAlive();
  /external/apache-http/src/org/apache/http/impl/client/
DefaultRequestDirector.java 461 reuse = reuseStrategy.keepAlive(response, context);
749 if (this.reuseStrategy.keepAlive(response, context)) {
    [all...]
  /external/webkit/WebCore/platform/chromium/
PopupMenuChromium.cpp 883 RefPtr<PopupListBox> keepAlive(this);
930 RefPtr<PopupListBox> keepAlive(this);
    [all...]
  /external/webkit/WebCore/bridge/
NP_jsobject.cpp 205 PluginView::keepAlive(instance);
  /external/webkit/WebCore/svg/animation/
SVGSMILElement.cpp 174 RefPtr<SVGSMILElement> keepAlive(this);
    [all...]
  /prebuilt/sdk/10/
android.jar 

Completed in 357 milliseconds

1 2