Home | History | Annotate | Download | only in filesystem

Lines Matching refs:callbacks

48 void fileSystemNotAllowed(ScriptExecutionContext*, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
50 callbacks->didFail(FileError::ABORT_ERR);
59 void LocalFileSystemBase::readFileSystem(ScriptExecutionContext* context, FileSystemType type, PassOwnPtr<AsyncFileSystemCallbacks> callbacks, FileSystemSynchronousType synchronousType)
62 context->postTask(createCallbackTask(&fileSystemNotAllowed, callbacks));
65 client()->openFileSystem(context, type, callbacks, synchronousType, 0, OpenExistingFileSystem);
68 void LocalFileSystemBase::requestFileSystem(ScriptExecutionContext* context, FileSystemType type, long long size, PassOwnPtr<AsyncFileSystemCallbacks> callbacks, FileSystemSynchronousType synchronousType)
71 context->postTask(createCallbackTask(&fileSystemNotAllowed, callbacks));
74 client()->openFileSystem(context, type, callbacks, synchronousType, size, CreateFileSystemIfNotPresent);
77 void LocalFileSystemBase::deleteFileSystem(ScriptExecutionContext* context, FileSystemType type, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
83 context->postTask(createCallbackTask(&fileSystemNotAllowed, callbacks));
86 client()->deleteFileSystem(context, type, callbacks);