Home
last modified time | relevance | path

Searched refs:AsyncFileSystemCallbacks (Results 1 – 19 of 19) sorted by relevance

/external/webkit/Source/WebKit/chromium/src/
DAsyncFileSystemChromium.h45 class AsyncFileSystemCallbacks; variable
56 …ove(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>);
57 …opy(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>);
58 virtual void remove(const String& path, PassOwnPtr<AsyncFileSystemCallbacks>);
59 virtual void removeRecursively(const String& path, PassOwnPtr<AsyncFileSystemCallbacks>);
60 virtual void readMetadata(const String& path, PassOwnPtr<AsyncFileSystemCallbacks>);
61 … virtual void createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
62 …ual void createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
63 virtual void fileExists(const String& path, PassOwnPtr<AsyncFileSystemCallbacks>);
64 virtual void directoryExists(const String& path, PassOwnPtr<AsyncFileSystemCallbacks>);
[all …]
DWorkerAsyncFileSystemChromium.h49 class AsyncFileSystemCallbacks; variable
65 …ove(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>);
66 …opy(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>);
67 virtual void remove(const String& path, PassOwnPtr<AsyncFileSystemCallbacks>);
68 virtual void removeRecursively(const String& path, PassOwnPtr<AsyncFileSystemCallbacks>);
69 virtual void readMetadata(const String& path, PassOwnPtr<AsyncFileSystemCallbacks>);
70 … virtual void createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
71 …ual void createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
72 virtual void fileExists(const String& path, PassOwnPtr<AsyncFileSystemCallbacks>);
73 virtual void directoryExists(const String& path, PassOwnPtr<AsyncFileSystemCallbacks>);
[all …]
DWorkerAsyncFileSystemChromium.cpp90 …t String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callback… in move()
95 …t String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callback… in copy()
100 void WorkerAsyncFileSystemChromium::remove(const String& path, PassOwnPtr<AsyncFileSystemCallbacks>… in remove()
105 …ystemChromium::removeRecursively(const String& path, PassOwnPtr<AsyncFileSystemCallbacks> callback… in removeRecursively()
110 …FileSystemChromium::readMetadata(const String& path, PassOwnPtr<AsyncFileSystemCallbacks> callback… in readMetadata()
115 …mium::createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callback… in createFile()
120 …:createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callback… in createDirectory()
125 …ncFileSystemChromium::fileExists(const String& path, PassOwnPtr<AsyncFileSystemCallbacks> callback… in fileExists()
130 …eSystemChromium::directoryExists(const String& path, PassOwnPtr<AsyncFileSystemCallbacks> callback… in directoryExists()
135 …ileSystemChromium::readDirectory(const String& path, PassOwnPtr<AsyncFileSystemCallbacks> callback… in readDirectory()
[all …]
DAsyncFileSystemChromium.cpp64 …t String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callback… in move()
69 …t String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callback… in copy()
74 void AsyncFileSystemChromium::remove(const String& path, PassOwnPtr<AsyncFileSystemCallbacks> callb… in remove()
79 …ystemChromium::removeRecursively(const String& path, PassOwnPtr<AsyncFileSystemCallbacks> callback… in removeRecursively()
84 void AsyncFileSystemChromium::readMetadata(const String& path, PassOwnPtr<AsyncFileSystemCallbacks>… in readMetadata()
89 …mium::createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callback… in createFile()
94 …:createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callback… in createDirectory()
99 void AsyncFileSystemChromium::fileExists(const String& path, PassOwnPtr<AsyncFileSystemCallbacks> c… in fileExists()
104 …eSystemChromium::directoryExists(const String& path, PassOwnPtr<AsyncFileSystemCallbacks> callback… in directoryExists()
109 void AsyncFileSystemChromium::readDirectory(const String& path, PassOwnPtr<AsyncFileSystemCallbacks in readDirectory()
[all …]
DWebFileSystemCallbacksImpl.h42 class AsyncFileSystemCallbacks; variable
54 …WebFileSystemCallbacksImpl(PassOwnPtr<WebCore::AsyncFileSystemCallbacks>, WebCore::AsyncFileSystem…
64 OwnPtr<WebCore::AsyncFileSystemCallbacks> m_callbacks;
DLocalFileSystemChromium.cpp69 …ecutionContext* context, AsyncFileSystem::Type type, PassOwnPtr<AsyncFileSystemCallbacks> callback… in openFileSystemHelper()
84 …ecutionContext* context, AsyncFileSystem::Type type, PassOwnPtr<AsyncFileSystemCallbacks> callback… in readFileSystem()
89 …context, AsyncFileSystem::Type type, long long size, PassOwnPtr<AsyncFileSystemCallbacks> callback… in requestFileSystem()
DWebFileSystemCallbacksImpl.cpp50 WebFileSystemCallbacksImpl::WebFileSystemCallbacksImpl(PassOwnPtr<AsyncFileSystemCallbacks> callbac… in WebFileSystemCallbacksImpl()
/external/webkit/Source/WebCore/platform/
DAsyncFileSystem.h43 class AsyncFileSystemCallbacks; variable
72 …asePath, const String& storageIdentifier, Type, bool create, PassOwnPtr<AsyncFileSystemCallbacks>);
77 …void move(const String& srcPath, const String& destPath, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
82 …void copy(const String& srcPath, const String& destPath, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
88 virtual void remove(const String& path, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
93 virtual void removeRecursively(const String& path, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
98 virtual void readMetadata(const String& path, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
103 …virtual void createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>) …
108 …void createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
113 virtual void fileExists(const String& path, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
[all …]
DAsyncFileSystemCallbacks.h44 class AsyncFileSystemCallbacks {
45 WTF_MAKE_NONCOPYABLE(AsyncFileSystemCallbacks);
47 AsyncFileSystemCallbacks() { } in AsyncFileSystemCallbacks() function
70 virtual ~AsyncFileSystemCallbacks() { } in ~AsyncFileSystemCallbacks()
DAsyncFileSystem.cpp56 …h, const String& storageIdentifier, Type type, bool, PassOwnPtr<AsyncFileSystemCallbacks> callback… in openFileSystem()
/external/webkit/Source/WebCore/fileapi/
DLocalFileSystem.cpp79 …identifier, AsyncFileSystem::Type type, bool create, PassOwnPtr<AsyncFileSystemCallbacks> callback… in openFileSystem()
84 …ecutionContext* context, AsyncFileSystem::Type type, PassOwnPtr<AsyncFileSystemCallbacks> callback… in readFileSystem()
90 …ext* context, AsyncFileSystem::Type type, long long, PassOwnPtr<AsyncFileSystemCallbacks> callback… in requestFileSystem()
DLocalFileSystem.h57 …stem(ScriptExecutionContext*, AsyncFileSystem::Type, PassOwnPtr<AsyncFileSystemCallbacks>, bool sy…
59 …tionContext*, AsyncFileSystem::Type, long long size, PassOwnPtr<AsyncFileSystemCallbacks>, bool sy…
DDOMFileSystemSync.cpp75 class GetPathHelper : public AsyncFileSystemCallbacks {
DFileSystemCallbacks.h58 class FileSystemCallbacksBase : public AsyncFileSystemCallbacks {
/external/webkit/Source/WebCore/
DWebCore.pro2867 platform/AsyncFileSystemCallbacks.h \
DWebCore.gypi3542 'platform/AsyncFileSystemCallbacks.h',
DChangeLog-2010-12-0623939 * platform/AsyncFileSystemCallbacks.h:
24191 * platform/AsyncFileSystemCallbacks.h:
46046 Also cleanup the callbacks layering to pass AsyncFileSystemCallbacks
46050 AsyncFileSystemCallbacks.
46075 AsyncFileSystemCallbacks as (a) callback argument(s).
49204 * platform/AsyncFileSystemCallbacks.h:
68838 * platform/AsyncFileSystemCallbacks.h: Added.
/external/webkit/Source/WebKit/chromium/
DChangeLog-2011-02-168007 Also cleanup the callbacks layering to pass AsyncFileSystemCallbacks
8011 AsyncFileSystemCallbacks.
8015 AsyncFileSystemCallbacks as (a) callback argument(s).
/external/webkit/Source/WebCore/WebCore.xcodeproj/
Dproject.pbxproj2771 …1001241DF /* AsyncFileSystemCallbacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 89D08D9E122…
9334 …F /* AsyncFileSystemCallbacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType …
18671 89D08D9E12228451001241DF /* AsyncFileSystemCallbacks.h */,
19942 89D08DA112228451001241DF /* AsyncFileSystemCallbacks.h in Headers */,