/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | ResponseBody.java | 40 public abstract long contentLength() throws IOException; in contentLength() method in ResponseBody 49 long contentLength = contentLength(); in bytes() local 120 final MediaType contentType, final long contentLength, final BufferedSource content) { in create() 127 @Override public long contentLength() { in create() method in ResponseBody
|
D | RequestBody.java | 35 public long contentLength() throws IOException { in contentLength() method in RequestBody 66 @Override public long contentLength() throws IOException { in create() method in RequestBody
|
D | MultipartBuilder.java | 201 private long contentLength = -1L; field in MultipartBuilder.MultipartRequestBody 217 @Override public long contentLength() throws IOException { in contentLength() method in MultipartBuilder.MultipartRequestBody 261 long contentLength = body.contentLength(); in writeOrCountBytes() local
|
D | Cache.java | 662 String contentLength = responseHeaders.get("Content-Length"); in response() local 697 private final String contentLength; field in CacheResponseBody 700 String contentType, String contentLength) { in CacheResponseBody() 718 @Override public long contentLength() { in contentLength() method in CacheResponseBody
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/ |
D | ResponseBody.java | 44 public abstract long contentLength() throws IOException; in contentLength() method in ResponseBody 53 long contentLength = contentLength(); in bytes() local 124 final MediaType contentType, final long contentLength, final BufferedSource content) { in create() 131 @Override public long contentLength() { in create() method in ResponseBody
|
D | RequestBody.java | 39 public long contentLength() throws IOException { in contentLength() method in RequestBody 70 @Override public long contentLength() throws IOException { in create() method in RequestBody
|
D | MultipartBuilder.java | 203 private long contentLength = -1L; field in MultipartBuilder.MultipartRequestBody 219 @Override public long contentLength() throws IOException { in contentLength() method in MultipartBuilder.MultipartRequestBody 263 long contentLength = body.contentLength(); in writeOrCountBytes() local
|
D | Cache.java | 664 String contentLength = responseHeaders.get("Content-Length"); in response() local 699 private final String contentLength; field in CacheResponseBody 702 String contentType, String contentLength) { in CacheResponseBody() 720 @Override public long contentLength() { in contentLength() method in CacheResponseBody
|
/external/nanohttpd/core/src/test/java/fi/iki/elonen/ |
D | HttpPostRequestTest.java | 80 …int contentLength = size + contentLengthHeaderValueSize + HttpPostRequestTest.CONTENT_LENGTH.lengt… in preparePostWithMultipartForm() local 125 …int contentLength = size + contentLengthHeaderValueSize + HttpPostRequestTest.CONTENT_LENGTH.lengt… in testPostWithMultipleMultipartFormFields() local 144 …int contentLength = size + contentLengthHeaderValueSize + HttpPostRequestTest.CONTENT_LENGTH.lengt… in testPostWithMultipleMultipartFormFieldsWhereContentTypeWasSeparatedByComma() local 162 …int contentLength = size + contentLengthHeaderValueSize + HttpPostRequestTest.CONTENT_LENGTH.lengt… in testSimplePostWithSingleMultipartFormField() local 176 …int contentLength = size + contentLengthHeaderValueSize + HttpPostRequestTest.CONTENT_LENGTH.lengt… in testSimpleRawPostData() local
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
D | MaxForwardsParser.java | 43 public MaxForwardsParser(String contentLength) { in MaxForwardsParser() 55 MaxForwards contentLength = new MaxForwards(); in parse() local
|
D | ContentLengthParser.java | 44 public ContentLengthParser(String contentLength) { in ContentLengthParser() 56 ContentLength contentLength = new ContentLength(); in parse() local
|
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/ |
D | HttpTransportSE.java | 92 public HttpTransportSE(String url, int timeout, int contentLength) { in HttpTransportSE() 96 public HttpTransportSE(Proxy proxy, String url, int timeout, int contentLength) { in HttpTransportSE() 191 int contentLength = 8192; // To determine the size of the response and adjust buffer size in call() local 310 private InputStream readDebug(InputStream is, int contentLength, File outputFile) in readDebug()
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | ContentLength.java | 86 protected Integer contentLength; field in ContentLength 115 public void setContentLength(int contentLength) in setContentLength()
|
/external/apache-http/src/org/apache/http/impl/io/ |
D | ContentLengthOutputStream.java | 64 private final long contentLength; field in ContentLengthOutputStream 81 public ContentLengthOutputStream(final SessionOutputBuffer out, long contentLength) { in ContentLengthOutputStream()
|
D | ContentLengthInputStream.java | 83 private long contentLength; field in ContentLengthInputStream 103 public ContentLengthInputStream(final SessionInputBuffer in, long contentLength) { in ContentLengthInputStream()
|
/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/ |
D | Progress.java | 83 @Override public long contentLength() throws IOException { in contentLength() method in Progress.ProgressResponseBody 109 void update(long bytesRead, long contentLength, boolean done); in update()
|
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/ |
D | UrlDownloaderTask.java | 114 int contentLength = progress[1]; in onProgressUpdate() local 153 int contentLength = connection.getContentLength(); in download() local
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
D | OkHeaders.java | 64 public static long contentLength(Request request) { in contentLength() method in OkHeaders 68 public static long contentLength(Response response) { in contentLength() method in OkHeaders 72 public static long contentLength(Headers headers) { in contentLength() method in OkHeaders
|
D | RealResponseBody.java | 37 @Override public long contentLength() { in contentLength() method in RealResponseBody
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/http/ |
D | OkHeaders.java | 66 public static long contentLength(Request request) { in contentLength() method in OkHeaders 70 public static long contentLength(Response response) { in contentLength() method in OkHeaders 74 public static long contentLength(Headers headers) { in contentLength() method in OkHeaders
|
D | RealResponseBody.java | 41 @Override public long contentLength() { in contentLength() method in RealResponseBody
|
D | HttpStream.java | 38 Sink createRequestBody(Request request, long contentLength) throws IOException; in createRequestBody()
|
/external/nist-sip/java/javax/sip/header/ |
D | ContentLengthHeader.java | 9 void setContentLength(int contentLength) throws InvalidArgumentException; in setContentLength()
|
/external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/ |
D | HttpEntityBody.java | 30 @Override public long contentLength() { in contentLength() method in HttpEntityBody
|
/external/volley/src/main/java/com/android/volley/toolbox/ |
D | AdaptedHttpStack.java | 67 long contentLength = apacheResp.getEntity().getContentLength(); in executeRequest() local
|