Home | History | Annotate | Download | only in fileapi

Lines Matching refs:platformPath

108     String platformPath = m_asyncFileSystem->virtualToPlatformPath(entry->fullPath());
109 m_asyncFileSystem->readMetadata(platformPath, MetadataCallbacks::create(successCallback, errorCallback));
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());
195 m_asyncFileSystem->removeRecursively(platformPath, VoidCallbacks::create(successCallback, errorCallback));
203 String platformPath = m_asyncFileSystem->virtualToPlatformPath(path);
204 m_asyncFileSystem->directoryExists(platformPath, EntryCallbacks::create(successCallback, errorCallback, this, path, true));
214 String platformPath = m_asyncFileSystem->virtualToPlatformPath(absolutePath);
217 m_asyncFileSystem->createFile(platformPath, flags->isExclusive(), callbacks.release());
219 m_asyncFileSystem->fileExists(platformPath, callbacks.release());
229 String platformPath = m_asyncFileSystem->virtualToPlatformPath(absolutePath);
232 m_asyncFileSystem->createDirectory(platformPath, flags->isExclusive(), callbacks.release());
234 m_asyncFileSystem->directoryExists(platformPath, callbacks.release());
241 String platformPath = m_asyncFileSystem->virtualToPlatformPath(path);
242 m_asyncFileSystem->readDirectory(platformPath, EntriesCallbacks::create(successCallback, errorCallback, reader, path));