Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DFileWriter.cpp57 , m_operationInProgress(OperationNone) in FileWriter()
113 if (m_operationInProgress != OperationNone) { in write()
115 ASSERT(m_operationInProgress == OperationAbort); in write()
154 if (m_operationInProgress != OperationNone) { in truncate()
156 ASSERT(m_operationInProgress == OperationAbort); in truncate()
176 if (m_operationInProgress == OperationAbort) { in didWrite()
182 ASSERT(m_operationInProgress == OperationWrite); in didWrite()
192 m_operationInProgress = OperationNone; in didWrite()
213 if (m_operationInProgress == OperationAbort) { in didTruncate()
217 ASSERT(m_operationInProgress == OperationTruncate); in didTruncate()
[all …]
DFileWriter.h111 Operation m_operationInProgress; variable