Home | History | Annotate | Download | only in filesystem

Lines Matching refs:errorCallback

38 #include "modules/filesystem/ErrorCallback.h"
51 void Entry::getMetadata(MetadataCallback* successCallback, ErrorCallback* errorCallback)
53 m_fileSystem->getMetadata(this, successCallback, errorCallback);
56 void Entry::moveTo(DirectoryEntry* parent, const String& name, EntryCallback* successCallback, ErrorCallback* errorCallback) const
58 m_fileSystem->move(this, parent, name, successCallback, errorCallback);
61 void Entry::copyTo(DirectoryEntry* parent, const String& name, EntryCallback* successCallback, ErrorCallback* errorCallback) const
63 m_fileSystem->copy(this, parent, name, successCallback, errorCallback);
66 void Entry::remove(VoidCallback* successCallback, ErrorCallback* errorCallback) const
68 m_fileSystem->remove(this, successCallback, errorCallback);
71 void Entry::getParent(EntryCallback* successCallback, ErrorCallback* errorCallback) const
73 m_fileSystem->getParent(this, successCallback, errorCallback);