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

1 2 3 4 5 6 7 8

  /external/nist-sip/java/javax/sip/header/
ContentLengthHeader.java 8 int getContentLength();
  /external/nist-sip/java/gov/nist/javax/sip/header/
ContentLength.java 108 public int getContentLength() {
154 return this.getContentLength() == o.getContentLength();
  /external/apache-http/src/org/apache/http/
HttpEntity.java 111 long getContentLength();
  /external/apache-http/src/org/apache/http/entity/
HttpEntityWrapper.java 87 public long getContentLength() {
88 return wrappedEntity.getContentLength();
BufferedHttpEntity.java 66 if (!entity.isRepeatable() || entity.getContentLength() < 0) {
73 public long getContentLength() {
77 return wrappedEntity.getContentLength();
ByteArrayEntity.java 69 public long getContentLength() {
EntityTemplate.java 65 public long getContentLength() {
BasicHttpEntity.java 69 public long getContentLength() {
FileEntity.java 71 public long getContentLength() {
InputStreamEntity.java 73 public long getContentLength() {
SerializableEntity.java 82 public long getContentLength() {
StringEntity.java 82 public long getContentLength() {
  /external/apache-http/src/org/apache/http/util/
EntityUtils.java 73 if (entity.getContentLength() > Integer.MAX_VALUE) {
76 int i = (int)entity.getContentLength();
121 if (entity.getContentLength() > Integer.MAX_VALUE) {
124 int i = (int)entity.getContentLength();
  /frameworks/base/core/java/android/webkit/
PluginData.java 107 public long getContentLength() {
  /external/apache-http/src/org/apache/http/protocol/
RequestContent.java 84 if (entity.isChunked() || entity.getContentLength() < 0) {
91 request.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.getContentLength()));
ResponseContent.java 80 long len = entity.getContentLength();
84 response.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.getContentLength()));
RequestExpectContinue.java 73 if (entity != null && entity.getContentLength() != 0) {
  /external/nist-sip/java/gov/nist/javax/sip/parser/
StringMsgParser.java 213 if (readBody && message.getContentLength() != null &&
214 message.getContentLength().getContentLength() != 0) {
220 message.setMessageContent(body,computeContentLengthFromMessage ,message.getContentLength().getContentLength() );
325 if (readBody && message.getContentLength() != null ) {
326 if ( message.getContentLength().getContentLength() != 0) {
328 message.setMessageContent(body,this.strict,computeContentLengthFromMessage,message.getContentLength().getContentLength());
    [all...]
  /external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
HttpEntityBody.java 31 return entity.getContentLength();
  /external/jetty/src/java/org/eclipse/jetty/http/gzip/
AbstractCompressedStream.java 98 long length=_wrapper.getContentLength();
118 long length=_wrapper.getContentLength();
144 long length=_wrapper.getContentLength();
181 long length=_wrapper.getContentLength();
315 long length=_wrapper.getContentLength();
336 long length=_wrapper.getContentLength();
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpContent.java 43 long getContentLength();
144 public long getContentLength()
  /libcore/ojluni/src/main/java/sun/misc/
Resource.java 70 public abstract int getContentLength() throws IOException;
100 len = getContentLength();
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
HttpEntityStub.java 22 @Override public long getContentLength() {
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpmime/4.3.2/
httpmime-4.3.2.jar 
  /external/nist-sip/java/gov/nist/javax/sip/stack/
TCPMessageChannel.java 499 + (sipRequest.getContentLength() == null ? 0 : sipRequest
500 .getContentLength().getContentLength()) > sipStack
547 + (sipResponse.getContentLength() == null ? 0 : sipResponse
548 .getContentLength().getContentLength()) > sipStack

Completed in 836 milliseconds

1 2 3 4 5 6 7 8