Searched refs:contentLength (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/core/java/android/webkit/ |
D | CacheManager.java | 66 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()
|
D | DownloadListener.java | 31 String contentDisposition, String mimetype, long contentLength); in onDownloadStart() argument
|
D | CallbackProxy.java | 455 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()
|
D | BrowserFrame.java | 1141 String contentDisposition, String mimeType, long contentLength) { in downloadStart() argument 1161 contentDisposition, mimeType, contentLength); in downloadStart()
|
/frameworks/base/media/libdrm/mobile1/src/objmng/ |
D | drm_api.c | 846 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/ |
D | Headers.java | 123 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/ |
D | drm_inner.h | 73 int32_t contentLength; member
|
/frameworks/av/media/libstagefright/rtsp/ |
D | ARTSPConnection.cpp | 707 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()
|