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

  /external/webkit/Source/WebCore/fileapi/
FileWriterSync.h 47 class FileWriterSync : public FileWriterBase, public AsyncFileWriterClient {
49 static PassRefPtr<FileWriterSync> create()
51 return adoptRef(new FileWriterSync());
53 virtual ~FileWriterSync();
66 FileWriterSync();
FileWriterSync.cpp 35 #include "FileWriterSync.h"
43 void FileWriterSync::write(Blob* data, ExceptionCode& ec)
65 void FileWriterSync::seek(long long position, ExceptionCode& ec)
73 void FileWriterSync::truncate(long long offset, ExceptionCode& ec)
94 void FileWriterSync::didWrite(long long bytes, bool complete)
105 void FileWriterSync::didTruncate()
114 void FileWriterSync::didFail(FileError::ErrorCode error)
124 FileWriterSync::FileWriterSync()
132 void FileWriterSync::prepareForWrite(
    [all...]
FileEntrySync.idl 39 FileWriterSync createWriter() raises (FileException);
DOMFileSystemSync.h 43 class FileWriterSync;
61 PassRefPtr<FileWriterSync> createWriter(const FileEntrySync*, ExceptionCode&);
FileEntrySync.h 44 class FileWriterSync;
56 PassRefPtr<FileWriterSync> createWriter(ExceptionCode&);
FileWriterSync.idl 34 ] FileWriterSync {
FileEntrySync.cpp 37 #include "FileWriterSync.h"
51 PassRefPtr<FileWriterSync> FileEntrySync::createWriter(ExceptionCode& ec)
DOMFileSystemSync.cpp 48 #include "FileWriterSync.h"
241 PassRefPtr<FileWriterSync> DOMFileSystemSync::createWriter(const FileEntrySync* fileEntry, ExceptionCode& ec)
248 RefPtr<FileWriterSync> fileWriter = FileWriterSync::create();
264 ASSERT(static_cast<FileWriterSync*>(successCallback->fileWriterBase()) == fileWriter.get());

Completed in 179 milliseconds