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

  /external/webkit/Source/WebCore/fileapi/
DOMFileSystemBase.cpp 93 , m_asyncFileSystem(asyncFileSystem)
108 String platformPath = m_asyncFileSystem->virtualToPlatformPath(entry->fullPath());
109 m_asyncFileSystem->readMetadata(platformPath, MetadataCallbacks::create(successCallback, errorCallback));
159 String sourcePlatformPath = m_asyncFileSystem->virtualToPlatformPath(source->fullPath());
161 m_asyncFileSystem->move(sourcePlatformPath, destinationPlatformPath, EntryCallbacks::create(successCallback, errorCallback, this, destinationPath, source->isDirectory()));
171 String sourcePlatformPath = m_asyncFileSystem->virtualToPlatformPath(source->fullPath());
173 m_asyncFileSystem->copy(sourcePlatformPath, destinationPlatformPath, EntryCallbacks::create(successCallback, errorCallback, this, destinationPath, source->isDirectory()));
183 String platformPath = m_asyncFileSystem->virtualToPlatformPath(entry->fullPath());
184 m_asyncFileSystem->remove(platformPath, VoidCallbacks::create(successCallback, errorCallback));
194 String platformPath = m_asyncFileSystem->virtualToPlatformPath(entry->fullPath())
    [all...]
DOMFileSystem.cpp 66 m_asyncFileSystem->stop();
71 return m_asyncFileSystem->hasPendingActivity();
76 m_asyncFileSystem->stop();
107 String platformPath = m_asyncFileSystem->virtualToPlatformPath(fileEntry->fullPath());
112 m_asyncFileSystem->createWriter(fileWriter.get(), platformPath, callbacks.release());
150 String platformPath = m_asyncFileSystem->virtualToPlatformPath(fileEntry->fullPath());
152 m_asyncFileSystem->readMetadata(platformPath, GetPathCallback::create(this, platformPath, successCallback, errorCallback));
DOMFileSystemSync.cpp 56 return adoptRef(new DOMFileSystemSync(fileSystem->m_context, fileSystem->m_name, fileSystem->m_asyncFileSystem.release()));
159 String platformPath = m_asyncFileSystem->virtualToPlatformPath(fileEntry->fullPath());
161 m_asyncFileSystem->readMetadata(platformPath, GetPathHelper::create(result));
162 if (!m_asyncFileSystem->waitForOperationToComplete()) {
246 String platformPath = m_asyncFileSystem->virtualToPlatformPath(fileEntry->fullPath());
253 m_asyncFileSystem->createWriter(fileWriter.get(), platformPath, callbacks.release());
254 if (!m_asyncFileSystem->waitForOperationToComplete()) {
DOMFileSystemBase.h 74 AsyncFileSystem* asyncFileSystem() const { return m_asyncFileSystem.get(); }
95 mutable OwnPtr<AsyncFileSystem> m_asyncFileSystem;

Completed in 49 milliseconds