Home
last modified time | relevance | path

Searched refs:m_totalBytes (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/fileapi/
DFileReaderLoader.cpp64 , m_totalBytes(-1) in FileReaderLoader()
182 m_totalBytes = response.expectedContentLength(); in didReceiveResponse()
186 if (m_totalBytes >= 0) { in didReceiveResponse()
187 initialBufferLength = m_totalBytes; in didReceiveResponse()
190 m_totalBytes = 1LL + m_rangeEnd - m_rangeStart; in didReceiveResponse()
191 initialBufferLength = m_totalBytes; in didReceiveResponse()
196 m_totalBytes = -1; in didReceiveResponse()
268 if (m_totalBytes == -1) { in didFinishLoading()
270 m_totalBytes = m_bytesLoaded; in didFinishLoading()
DFileReaderLoader.h94 long long totalBytes() const { return m_totalBytes; } in totalBytes()
136 long long m_totalBytes; variable