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

  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
AsyncFileWriterClient.h 42 virtual void didWrite(long long bytes, bool complete) = 0;
FileWriterSync.h 59 void didWrite(long long bytes, bool complete);
FileWriter.h 67 void didWrite(long long bytes, bool complete);
FileWriterSync.cpp 93 void FileWriterSync::didWrite(long long bytes, bool complete)
FileWriter.cpp 180 void FileWriter::didWrite(long long bytes, bool complete)
  /external/chromium_org/third_party/WebKit/public/web/
WebFileWriterClient.h 43 virtual void didWrite(long long bytes, bool complete) = 0;
48 // Called if the write or truncate fails, or if it is cancelled before the write or truncate completes. Completion of an operation will be signalled exactly once, either by didFail, didTruncate, or didWrite(..., true).
  /external/chromium_org/third_party/WebKit/Source/web/
AsyncFileWriterChromium.cpp 78 void AsyncFileWriterChromium::didWrite(long long bytes, bool complete)
81 m_client->didWrite(bytes, complete);
AsyncFileWriterChromium.h 61 virtual void didWrite(long long bytes, bool complete);
WorkerFileWriterCallbacksBridge.h 70 // --> Bridge::didWrite is called on MainThread
104 void didWrite(long long bytes, bool complete);
WorkerFileWriterCallbacksBridge.cpp 118 void WorkerFileWriterCallbacksBridge::didWrite(long long bytes, bool complete)
168 bridge->m_clientOnWorkerThread->didWrite(length, complete);
  /external/chromium_org/webkit/renderer/fileapi/
webfilewriter_base.cc 45 // success [of the write/truncate, in a DidWrite(XXX, true)/DidSucceed() call]
49 // In the write case, there could also be queued up non-terminal DidWrite calls
73 void WebFileWriterBase::DidWrite(int64 bytes, bool complete) {
79 client_->didWrite(bytes, complete);
webfilewriter_base_unittest.cc 98 DidWrite(1, true);
102 DidWrite(1, false);
103 DidWrite(1, false);
104 DidWrite(1, true);
106 DidWrite(1, false);
108 DidWrite(1, false);
109 DidWrite(1, false);
113 DidWrite(1, false);
115 DidWrite(1, false);
116 DidWrite(1, false)
    [all...]

Completed in 312 milliseconds