Home
last modified time | relevance | path

Searched refs:contentLength (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/core/java/android/webkit/
DCacheManager.java66 long contentLength; field in CacheManager.CacheResult
98 return contentLength; in getContentLength()
235 public void setContentLength(long contentLength) { in setContentLength() argument
236 this.contentLength = contentLength; in setContentLength()
DDownloadListener.java31 String contentDisposition, String mimetype, long contentLength); in onDownloadStart() argument
DCallbackProxy.java455 Long contentLength = msg.getData().getLong("contentLength"); in handleMessage() local
458 contentDisposition, mimetype, contentLength); in handleMessage()
1179 String contentDisposition, String mimetype, long contentLength) { in onDownloadStart() argument
1192 bundle.putLong("contentLength", contentLength); in onDownloadStart()
DBrowserFrame.java1141 String contentDisposition, String mimeType, long contentLength) { in downloadStart() argument
1161 contentDisposition, mimeType, contentLength); in downloadStart()
/frameworks/base/media/libdrm/mobile1/src/objmng/
Ddrm_api.c846 s->contentLength = DRM_UNKNOWN_DATA_LEN; in SVC_drm_openSession()
848 s->contentLength = dmInfo.contentLen; in SVC_drm_openSession()
885 if (s->contentLength > 0) { in SVC_drm_openSession()
888 encLen = s->contentLength; in SVC_drm_openSession()
892 s->contentLength = decLen; in SVC_drm_openSession()
968 s->contentLength = decLen; in SVC_drm_openSession()
972 if (DRM_UNKNOWN_DATA_LEN == s->contentLength) { in SVC_drm_openSession()
1023 s->contentLength = binContentLen; in SVC_drm_openSession()
1045 s->contentLength = dcfInfo.DecryptedDataLen; in SVC_drm_openSession()
1072 s->contentLength = ((T_DRM_Dcf_Node *)(s->infoStruct))->encContentLength; in SVC_drm_openSession()
[all …]
/frameworks/base/core/java/android/net/http/
DHeaders.java123 private long contentLength; // Content length of the incoming data field in Headers
156 contentLength = NO_CONTENT_LENGTH; in Headers()
201 contentLength = Long.parseLong(val); in parseHeader()
316 return contentLength; in getContentLength()
384 this.contentLength = value; in setContentLength()
/frameworks/base/media/libdrm/mobile1/include/objmng/
Ddrm_inner.h73 int32_t contentLength; member
/frameworks/av/media/libstagefright/rtsp/
DARTSPConnection.cpp707 unsigned long contentLength = 0; in receiveRTSPReponse() local
713 if (!ParseSingleUnsignedLong(value.c_str(), &contentLength)) { in receiveRTSPReponse()
718 if (contentLength > 0) { in receiveRTSPReponse()
719 response->mContent = new ABuffer(contentLength); in receiveRTSPReponse()
721 if (receive(response->mContent->data(), contentLength) != OK) { in receiveRTSPReponse()