HomeSort by relevance Sort by last modified time
    Searched refs:m_totalBytes (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReaderLoader.cpp 64 , m_totalBytes(-1)
182 m_totalBytes = response.expectedContentLength();
186 if (m_totalBytes >= 0) {
187 initialBufferLength = m_totalBytes;
189 // Set m_totalBytes and allocate a buffer based on the specified range.
190 m_totalBytes = 1LL + m_rangeEnd - m_rangeStart;
191 initialBufferLength = m_totalBytes;
194 // m_totalBytes to -1 and initialize the buffer for receiving with the
196 m_totalBytes = -1;
268 if (m_totalBytes == -1)
    [all...]
FileReaderLoader.h 94 long long totalBytes() const { return m_totalBytes; }
131 // If the total size of the resource is unknown, m_totalBytes is set to -1
133 // dynamically grow. Otherwise, m_totalBytes is set to the total size and
134 // the buffer for receiving data of m_totalBytes is allocated and never grow
136 long long m_totalBytes;

Completed in 90 milliseconds