Searched refs:fileSystem (Results 1 - 25 of 30) sorted by relevance

12

/external/webkit/Source/WebCore/fileapi/
H A DFileSystemCallback.idl36 boolean handleEvent(in DOMFileSystem fileSystem);
H A DDirectoryReader.cpp43 DirectoryReader::DirectoryReader(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
44 : DirectoryReaderBase(fileSystem, fullPath)
H A DFileEntrySync.cpp41 FileEntrySync::FileEntrySync(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
42 : EntrySync(fileSystem, fullPath)
H A DFileEntry.h46 static PassRefPtr<FileEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
48 return adoptRef(new FileEntry(fileSystem, fullPath));
57 FileEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath);
H A DDirectoryReaderSync.cpp47 DirectoryReaderSync::DirectoryReaderSync(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
48 : DirectoryReaderBase(fileSystem, fullPath)
H A DDirectoryReaderSync.h46 static PassRefPtr<DirectoryReaderSync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
48 return adoptRef(new DirectoryReaderSync(fileSystem, fullPath));
H A DFileEntry.cpp44 FileEntry::FileEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
45 : Entry(fileSystem, fullPath)
H A DDirectoryReader.h50 static PassRefPtr<DirectoryReader> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
52 return adoptRef(new DirectoryReader(fileSystem, fullPath));
H A DDirectoryReaderBase.h49 DirectoryReaderBase(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
50 : m_fileSystem(fileSystem)
H A DFileEntrySync.h48 static PassRefPtr<FileEntrySync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
50 return adoptRef(new FileEntrySync(fileSystem, fullPath));
H A DDirectoryEntry.h52 static PassRefPtr<DirectoryEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
54 return adoptRef(new DirectoryEntry(fileSystem, fullPath));
H A DDirectoryEntrySync.h49 static PassRefPtr<DirectoryEntrySync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
51 return adoptRef(new DirectoryEntrySync(fileSystem, fullPath));
H A DEntryBase.cpp46 EntryBase::EntryBase(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
47 : m_fileSystem(fileSystem)
H A DDirectoryEntry.cpp44 DirectoryEntry::DirectoryEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
45 : Entry(fileSystem, fullPath)
H A DDirectoryEntrySync.cpp44 DirectoryEntrySync::DirectoryEntrySync(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
45 : EntrySync(fileSystem, fullPath)
H A DDOMFileSystemSync.cpp54 PassRefPtr<DOMFileSystemSync> DOMFileSystemSync::create(DOMFileSystemBase* fileSystem) argument
56 return adoptRef(new DOMFileSystemSync(fileSystem->m_context, fileSystem->m_name, fileSystem->m_asyncFileSystem.release()));
H A DEntry.cpp49 Entry::Entry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
50 : EntryBase(fileSystem, fullPath)
H A DEntrySync.cpp105 EntrySync::EntrySync(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
106 : EntryBase(fileSystem, fullPath)
H A DFileSystemCallbacks.cpp114 PassOwnPtr<EntryCallbacks> EntryCallbacks::create(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DOMFileSystemBase> fileSystem, const String& expectedPath, bool isDirectory) argument
116 return adoptPtr(new EntryCallbacks(successCallback, errorCallback, fileSystem, expectedPath, isDirectory));
119 EntryCallbacks::EntryCallbacks(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DOMFileSystemBase> fileSystem, const String& expectedPath, bool isDirectory) argument
122 , m_fileSystem(fileSystem)
/external/webkit/Source/WebKit/chromium/src/
H A DWorkerFileSystemCallbacksBridge.cpp161 void WorkerFileSystemCallbacksBridge::postMoveToMainThread(WebFileSystem* fileSystem, const String& sourcePath, const String& destinationPath, const String& mode) argument
163 dispatchTaskToMainThread(createCallbackTask(&moveOnMainThread, fileSystem, sourcePath, destinationPath, this, mode));
166 void WorkerFileSystemCallbacksBridge::postCopyToMainThread(WebFileSystem* fileSystem, const String& sourcePath, const String& destinationPath, const String& mode) argument
168 dispatchTaskToMainThread(createCallbackTask(&copyOnMainThread, fileSystem, sourcePath, destinationPath, this, mode));
171 void WorkerFileSystemCallbacksBridge::postRemoveToMainThread(WebFileSystem* fileSystem, const String& path, const String& mode) argument
173 ASSERT(fileSystem);
174 dispatchTaskToMainThread(createCallbackTask(&removeOnMainThread, fileSystem, path, this, mode));
177 void WorkerFileSystemCallbacksBridge::postRemoveRecursivelyToMainThread(WebFileSystem* fileSystem, const String& path, const String& mode) argument
179 ASSERT(fileSystem);
180 dispatchTaskToMainThread(createCallbackTask(&removeRecursivelyOnMainThread, fileSystem, pat
183 postReadMetadataToMainThread(WebFileSystem* fileSystem, const String& path, const String& mode) argument
189 postCreateFileToMainThread(WebFileSystem* fileSystem, const String& path, bool exclusive, const String& mode) argument
194 postCreateDirectoryToMainThread(WebFileSystem* fileSystem, const String& path, bool exclusive, const String& mode) argument
200 postFileExistsToMainThread(WebFileSystem* fileSystem, const String& path, const String& mode) argument
206 postDirectoryExistsToMainThread(WebFileSystem* fileSystem, const String& path, const String& mode) argument
212 postReadDirectoryToMainThread(WebFileSystem* fileSystem, const String& path, const String& mode) argument
227 moveOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& sourcePath, const String& destinationPath, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
232 copyOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& sourcePath, const String& destinationPath, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
237 removeOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
242 removeRecursivelyOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
247 readMetadataOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
252 createFileOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, bool exclusive, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
257 createDirectoryOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, bool exclusive, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
262 fileExistsOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
267 directoryExistsOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
272 readDirectoryOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
[all...]
H A DAsyncFileSystemChromium.cpp55 , m_webFileSystem(WebKit::webKitClient()->fileSystem())
/external/srec/portable/include/
H A DPFileSystemImpl.h96 * @param fileSystem [out] File-system which matches the path
99 * @return ESR_INVALID_ARGUMENT if path, fileSystem or relativePath is null; ESR_INVALID_STATE if no
102 PORTABLE_API ESR_ReturnCode PFileSystemGetFS(const LCHAR* path, PFileSystem** fileSystem, LCHAR* relativePath);
/external/srec/portable/src/
H A DPFileSystem.c273 ESR_ReturnCode PFileSystemGetFS(const LCHAR* path, PFileSystem** fileSystem, LCHAR* relativePath) argument
305 *fileSystem = bestValue;
328 PFileSystem* fileSystem; local
341 CHKLOG(rc, PFileSystemGetFS(absolutePath, &fileSystem, NULL));
342 rc = fileSystem->createPFile(fileSystem, absolutePath, littleEndian, self);
359 PFileSystem* fileSystem; local
372 CHKLOG(rc, PFileSystemGetFS(absolutePath, &fileSystem, NULL));
373 CHK(rc, fileSystem->mkdir(fileSystem, absolutePat
408 PFileSystem* fileSystem; local
[all...]
/external/webkit/Source/WebCore/workers/
H A DWorkerContext.cpp424 RefPtr<DOMFileSystemSync> fileSystem = readFileSystemHelper.getResult(ec); local
425 if (!fileSystem)
428 RefPtr<EntrySync> entry = fileSystem->root()->getDirectory(filePath, 0, ec);
430 return fileSystem->root()->getFile(filePath, 0, ec);
/external/webkit/Source/WebKit/chromium/public/
H A DWebKitClient.h295 virtual WebFileSystem* fileSystem() { return 0; } function in class:WebKit::WebKitClient

Completed in 161 milliseconds

12