Searched refs:getContentLength (Results 1 - 25 of 60) sorted by relevance

123

/external/nist-sip/java/javax/sip/header/
H A DContentLengthHeader.java8 int getContentLength(); method in interface:ContentLengthHeader
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DContentLength.java108 public int getContentLength() {
154 return this.getContentLength() == o.getContentLength();
107 public int getContentLength() { method in class:ContentLength
/external/apache-http/src/org/apache/http/
H A DHttpEntity.java111 long getContentLength(); method in interface:HttpEntity
/external/apache-http/src/org/apache/http/entity/
H A DHttpEntityWrapper.java87 public long getContentLength() { method in class:HttpEntityWrapper
88 return wrappedEntity.getContentLength();
H A DBufferedHttpEntity.java66 if (!entity.isRepeatable() || entity.getContentLength() < 0) {
73 public long getContentLength() { method in class:BufferedHttpEntity
77 return wrappedEntity.getContentLength();
H A DByteArrayEntity.java69 public long getContentLength() { method in class:ByteArrayEntity
H A DEntityTemplate.java65 public long getContentLength() { method in class:EntityTemplate
H A DBasicHttpEntity.java69 public long getContentLength() { method in class:BasicHttpEntity
H A DFileEntity.java71 public long getContentLength() { method in class:FileEntity
H A DInputStreamEntity.java73 public long getContentLength() { method in class:InputStreamEntity
H A DSerializableEntity.java82 public long getContentLength() { method in class:SerializableEntity
H A DStringEntity.java82 public long getContentLength() { method in class:StringEntity
/external/apache-http/src/org/apache/http/util/
H A DEntityUtils.java73 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();
/external/apache-http/src/org/apache/http/protocol/
H A DRequestContent.java84 if (entity.isChunked() || entity.getContentLength() < 0) {
91 request.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.getContentLength()));
H A DResponseContent.java80 long len = entity.getContentLength();
84 response.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.getContentLength()));
H A DRequestExpectContinue.java73 if (entity != null && entity.getContentLength() != 0) {
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DStringMsgParser.java213 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...]
H A DPipelinedMsgParser.java293 .getContentLength();
296 contentLength = cl.getContentLength();
/external/chromium_org/components/cronet/android/java/src/org/chromium/net/
H A DHttpUrlRequest.java125 long getContentLength(); method in interface:HttpUrlRequest
/external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
H A DOkApacheClient.java139 if (entity.isChunked() || entity.getContentLength() < 0) {
141 } else if (entity.getContentLength() <= 8192) {
144 connection.addRequestProperty("Content-Length", Long.toString(entity.getContentLength()));
146 connection.setFixedLengthStreamingMode((int) entity.getContentLength());
160 InputStreamEntity entity = new InputStreamEntity(responseBody, connection.getContentLength());
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
H A DHttpEntityStub.java22 @Override public long getContentLength() { method in class:HttpEntityStub
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DTCPMessageChannel.java499 + (sipRequest.getContentLength() == null ? 0 : sipRequest
500 .getContentLength().getContentLength()) > sipStack
547 + (sipResponse.getContentLength() == null ? 0 : sipResponse
548 .getContentLength().getContentLength()) > sipStack
H A DTLSMessageChannel.java468 + (sipRequest.getContentLength() == null ? 0 : sipRequest
469 .getContentLength().getContentLength()) > sipStack
526 + (sipResponse.getContentLength() == null ? 0 : sipResponse
527 .getContentLength().getContentLength()) > sipStack
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DDownloadInfo.java81 public long getContentLength() { method in class:DownloadInfo
245 .setContentLength(downloadInfo.getContentLength())
/external/apache-http/src/org/apache/http/impl/
H A DDefaultConnectionReuseStrategy.java106 if (entity.getContentLength() < 0) {

Completed in 1085 milliseconds

123