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

1 2 3 4 5 6

  /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 106 long getContentLength();
  /external/apache-http/src/org/apache/http/entity/
HttpEntityWrapper.java 82 public long getContentLength() {
83 return wrappedEntity.getContentLength();
BufferedHttpEntity.java 61 if (!entity.isRepeatable() || entity.getContentLength() < 0) {
68 public long getContentLength() {
72 return wrappedEntity.getContentLength();
ByteArrayEntity.java 64 public long getContentLength() {
EntityTemplate.java 60 public long getContentLength() {
BasicHttpEntity.java 64 public long getContentLength() {
FileEntity.java 66 public long getContentLength() {
InputStreamEntity.java 68 public long getContentLength() {
SerializableEntity.java 76 public long getContentLength() {
StringEntity.java 77 public long getContentLength() {
  /external/apache-http/src/org/apache/http/util/
EntityUtils.java 68 if (entity.getContentLength() > Integer.MAX_VALUE) {
71 int i = (int)entity.getContentLength();
116 if (entity.getContentLength() > Integer.MAX_VALUE) {
119 int i = (int)entity.getContentLength();
  /external/chromium_org/components/cronet/android/java/src/org/chromium/net/
HttpUrlRequest.java 103 long getContentLength();
ChromiumUrlRequest.java 77 public long getContentLength() {
91 mContentLength = super.getContentLength();
  /frameworks/base/core/java/android/webkit/
PluginData.java 107 public long getContentLength() {
  /external/apache-http/src/org/apache/http/protocol/
RequestContent.java 79 if (entity.isChunked() || entity.getContentLength() < 0) {
86 request.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.getContentLength()));
ResponseContent.java 75 long len = entity.getContentLength();
79 response.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.getContentLength()));
RequestExpectContinue.java 68 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/
OkApacheClient.java 139 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/
HttpEntityStub.java 22 @Override public long getContentLength() {
  /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
TLSMessageChannel.java 468 + (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/
DownloadInfo.java 79 public long getContentLength() {
233 .setContentLength(downloadInfo.getContentLength())

Completed in 859 milliseconds

1 2 3 4 5 6