Searched refs:contentLength (Results 1 - 10 of 10) 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.java67 long contentLength; field in class:CacheManager.CacheResult
99 return contentLength;
236 public void setContentLength(long contentLength) { argument
237 this.contentLength = contentLength;
H A DCallbackProxy.java453 Long contentLength = msg.getData().getLong("contentLength");
457 userAgent, contentDisposition, mimetype, referer, contentLength);
460 contentDisposition, mimetype, contentLength);
1165 long contentLength) {
1179 bundle.putLong("contentLength", contentLength);
1163 onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, String referer, long contentLength) argument
H A DBrowserFrame.java1162 String contentDisposition, String mimeType, String referer, long contentLength) {
1182 contentDisposition, mimeType, referer, contentLength);
1161 downloadStart(String url, String userAgent, String contentDisposition, String mimeType, String referer, long contentLength) argument
/frameworks/av/media/libstagefright/wifi-display/
H A DParsedMessage.cpp155 int32_t contentLength; local
156 if (!findInt32("content-length", &contentLength) || contentLength < 0) {
157 contentLength = 0;
160 size_t totalLength = offset + contentLength;
166 mContent.setTo(&data[offset], contentLength);
/frameworks/base/media/libdrm/mobile1/include/objmng/
H A Ddrm_inner.h73 int32_t contentLength; member in struct:_T_DRM_Session_Node
/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/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_api.c846 s->contentLength = DRM_UNKNOWN_DATA_LEN;
848 s->contentLength = dmInfo.contentLen;
885 if (s->contentLength > 0) {
888 encLen = s->contentLength;
892 s->contentLength = decLen;
968 s->contentLength = decLen;
972 if (DRM_UNKNOWN_DATA_LEN == s->contentLength) {
1023 s->contentLength = binContentLen;
1045 s->contentLength = dcfInfo.DecryptedDataLen;
1072 s->contentLength
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp707 unsigned long contentLength = 0; local
713 if (!ParseSingleUnsignedLong(value.c_str(), &contentLength)) {
718 if (contentLength > 0) {
719 response->mContent = new ABuffer(contentLength);
721 if (receive(response->mContent->data(), contentLength) != OK) {

Completed in 1405 milliseconds