Searched refs:contentLength (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DBrowserDownloadListener.java34 * @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);
36 onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, String referer, long contentLength) argument
51 onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength) argument
H A DDownloadListener.java28 * @param contentLength The file size reported by the server
31 String contentDisposition, String mimetype, long contentLength);
30 onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength) argument
H A DCacheManager.java59 long contentLength; field in class:CacheManager.CacheResult
91 return contentLength;
228 public void setContentLength(long contentLength) { argument
229 this.contentLength = contentLength;
/frameworks/av/media/libstagefright/foundation/
H A DParsedMessage.cpp164 int32_t contentLength; local
165 if (!findInt32("content-length", &contentLength) || contentLength < 0) {
166 contentLength = 0;
169 size_t totalLength = offset + contentLength;
175 mContent.setTo(&data[offset], contentLength);
/frameworks/base/core/java/android/net/http/
H A DHeaders.java123 private long contentLength; // Content length of the incoming data field in class:Headers
156 contentLength = NO_CONTENT_LENGTH;
201 contentLength = Long.parseLong(val);
316 return contentLength;
384 this.contentLength = value;
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp718 unsigned long contentLength = 0; local
724 if (!ParseSingleUnsignedLong(value.c_str(), &contentLength)) {
729 if (contentLength > 0) {
730 response->mContent = new ABuffer(contentLength);
732 if (receive(response->mContent->data(), contentLength) != OK) {
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewContentsClientAdapter.java724 long contentLength) {
732 contentLength);
720 onDownloadStart(String url, String userAgent, String contentDisposition, String mimeType, long contentLength) argument

Completed in 99 milliseconds