Searched refs:contentLength (Results 1 – 6 of 6) sorted by relevance
54 long contentLength; field in CacheManager.CacheResult86 return contentLength; in getContentLength()223 public void setContentLength(long contentLength) { in setContentLength() argument224 this.contentLength = contentLength; in setContentLength()
31 String contentDisposition, String mimetype, long contentLength); in onDownloadStart() argument
164 int32_t contentLength; in parse() local165 if (!findInt32("content-length", &contentLength) || contentLength < 0) { in parse()166 contentLength = 0; in parse()169 size_t totalLength = offset + contentLength; in parse()175 mContent.setTo(&data[offset], contentLength); in parse()
216 long contentLength = -1; in get() local218 contentLength = Long.parseLong(urlConnection.getHeaderField("Content-Length")); in get()222 if (contentLength > MAX_PAC_SIZE) { in get()223 throw new IOException("PAC too big: " + contentLength + " bytes"); in get()
717 unsigned long contentLength = 0; in receiveRTSPReponse() local723 if (!ParseSingleUnsignedLong(value.c_str(), &contentLength)) { in receiveRTSPReponse()728 if (contentLength > 0) { in receiveRTSPReponse()729 response->mContent = new ABuffer(contentLength); in receiveRTSPReponse()731 if (receive(response->mContent->data(), contentLength) != OK) { in receiveRTSPReponse()
6689 Landroid/webkit/CacheManager$CacheResult;->contentLength:J