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

1 2 3 4

  /external/nist-sip/java/gov/nist/javax/sip/header/
ContentLength.java 35 * ContentLength SIPHeader (of which there can be only one in a SIPMessage).
76 public class ContentLength
85 * contentLength field.
87 protected Integer contentLength;
92 public ContentLength() {
99 public ContentLength(int length) {
101 this.contentLength = Integer.valueOf(length);
105 * get the ContentLength field.
109 return contentLength.intValue();
113 * Set the contentLength membe
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
ContentLengthInputStream.java 78 private long contentLength;
95 * @param contentLength The maximum number of bytes that can be read from
98 public ContentLengthInputStream(final SessionInputBuffer in, long contentLength) {
103 if (contentLength < 0) {
107 this.contentLength = contentLength;
143 if (pos >= contentLength) {
167 if (pos >= contentLength) {
171 if (pos + len > contentLength) {
172 len = (int) (contentLength - pos)
    [all...]
ContentLengthOutputStream.java 59 private final long contentLength;
71 * @param contentLength The maximum number of bytes that can be written to
76 public ContentLengthOutputStream(final SessionOutputBuffer out, long contentLength) {
81 if (contentLength < 0) {
85 this.contentLength = contentLength;
108 if (this.total < this.contentLength) {
109 long max = this.contentLength - this.total;
126 if (this.total < this.contentLength) {
  /frameworks/base/core/java/android/webkit/
BrowserDownloadListener.java 34 * @param contentLength The file size reported by the server
38 long contentLength);
48 * @param contentLength The file size reported by the server
52 String contentDisposition, String mimetype, long contentLength) {
55 contentLength);
DownloadListener.java 28 * @param contentLength The file size reported by the server
31 String contentDisposition, String mimetype, long contentLength);
CacheManager.java 59 long contentLength;
91 return contentLength;
228 public void setContentLength(long contentLength) {
229 this.contentLength = contentLength;
  /external/nist-sip/java/javax/sip/header/
ContentLengthHeader.java 9 void setContentLength(int contentLength) throws InvalidArgumentException;
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ContentLengthParser.java 44 public ContentLengthParser(String contentLength) {
45 super(contentLength);
56 ContentLength contentLength = new ContentLength();
59 contentLength.setContentLength(Integer.parseInt(number));
62 return contentLength;
MaxForwardsParser.java 43 public MaxForwardsParser(String contentLength) {
44 super(contentLength);
55 MaxForwards contentLength = new MaxForwards();
58 contentLength.setMaxForwards(Integer.parseInt(number));
61 return contentLength;
PipelinedMsgParser.java 292 ContentLength cl = (ContentLength) sipMessage
294 int contentLength = 0;
296 contentLength = cl.getContentLength();
298 contentLength = 0;
302 Debug.println("contentLength " + contentLength);
305 if (contentLength == 0) {
308 || contentLength < this.sizeCounter) {
309 byte[] message_body = new byte[contentLength];
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentViewDownloadDelegate.java 21 * @param contentLength The file size reported by the server.
24 String mimetype, String cookie, String referer, long contentLength);
DownloadController.java 33 * @param contentLength The file size of the downloaded file (in bytes).
37 String description, long contentLength, boolean successful);
71 String cookie, String referer, long contentLength) {
76 mimetype, cookie, referer, contentLength);
102 String filename, String path, long contentLength, boolean successful) {
105 filename, contentLength, successful);
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
Job.java 61 long contentLength = body.contentLength();
62 if (contentLength == -1 || contentLength > Integer.MAX_VALUE) {
66 connection.setFixedLengthStreamingMode((int) contentLength);
RequestHeaders.java 51 private long contentLength = -1;
99 contentLength = Integer.parseInt(value);
161 return contentLength;
208 public void setContentLength(long contentLength) {
209 if (this.contentLength != -1) {
212 headers.add("Content-Length", Long.toString(contentLength));
213 this.contentLength = contentLength;
RetryableOutputStream.java 67 public synchronized int contentLength() throws IOException {
  /libcore/luni/src/main/java/java/net/
HttpURLConnection.java 749 * fixed byte count of {@code contentLength}.
752 * @param contentLength
757 * if {@code contentLength} is less than zero.
760 public void setFixedLengthStreamingMode(long contentLength) {
767 if (contentLength < 0) {
768 throw new IllegalArgumentException("contentLength < 0");
770 this.fixedContentLength = (int) Math.min(contentLength, Integer.MAX_VALUE);
771 this.fixedContentLengthLong = contentLength;
775 * Equivalent to {@code setFixedLengthStreamingMode((long) contentLength)},
778 public void setFixedLengthStreamingMode(int contentLength) {
    [all...]
  /external/okhttp/src/test/java/com/squareup/okhttp/
RequestTest.java 32 assertEquals(3, body.contentLength());
41 assertEquals(3, body.contentLength());
49 assertEquals(2, body.contentLength());
57 assertEquals(3, body.contentLength());
71 assertEquals(3, body.contentLength());
  /external/okhttp/src/main/java/com/squareup/okhttp/
Response.java 119 public long contentLength() {
126 long contentLength = contentLength();
127 if (contentLength > Integer.MAX_VALUE) {
128 throw new IOException("Cannot buffer entire body for content length: " + contentLength);
131 if (contentLength != -1) {
132 byte[] content = new byte[(int) contentLength];
Request.java 107 public long contentLength() {
140 @Override public long contentLength() {
160 @Override public long contentLength() {
165 long length = contentLength();
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwContentsIoThreadClient.java 38 long contentLength);
AwContentsClientCallbackHelper.java 39 long contentLength) {
44 mContentLength = contentLength;
158 String mimeType, long contentLength) {
160 contentLength);
  /external/oauth/core/src/main/java/net/oauth/client/
URLConnectionClient.java 73 String contentLength = null;
78 contentLength = header.getValue();
88 if (contentLength != null) {
90 .setFixedLengthStreamingMode(Integer.parseInt(contentLength));
  /frameworks/av/media/libstagefright/foundation/
ParsedMessage.cpp 164 int32_t contentLength;
165 if (!findInt32("content-length", &contentLength) || contentLength < 0) {
166 contentLength = 0;
169 size_t totalLength = offset + contentLength;
175 mContent.setTo(&data[offset], contentLength);
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpMethodResponse.java 109 long contentLength = r.getEntity().getContentLength();
110 if (contentLength >= 0) {
111 request.append("Content-Length: ").append(contentLength).append(EOL);
  /frameworks/base/core/java/android/net/http/
Headers.java 123 private long contentLength; // Content length of the incoming data
156 contentLength = NO_CONTENT_LENGTH;
201 contentLength = Long.parseLong(val);
316 return contentLength;
384 this.contentLength = value;

Completed in 644 milliseconds

1 2 3 4