Home
last modified time | relevance | path

Searched refs:fileSystem (Results 1 – 2 of 2) sorted by relevance

/external/srec/portable/src/
DPFileSystem.c273 ESR_ReturnCode PFileSystemGetFS(const LCHAR* path, PFileSystem** fileSystem, LCHAR* relativePath) in PFileSystemGetFS() argument
305 *fileSystem = bestValue; in PFileSystemGetFS()
328 PFileSystem* fileSystem; in PFileSystemCreatePFile() local
341 CHKLOG(rc, PFileSystemGetFS(absolutePath, &fileSystem, NULL)); in PFileSystemCreatePFile()
342 rc = fileSystem->createPFile(fileSystem, absolutePath, littleEndian, self); in PFileSystemCreatePFile()
359 PFileSystem* fileSystem; in PFileSystemMkdir() local
372 CHKLOG(rc, PFileSystemGetFS(absolutePath, &fileSystem, NULL)); in PFileSystemMkdir()
373 CHK(rc, fileSystem->mkdir(fileSystem, absolutePath)); in PFileSystemMkdir()
408 PFileSystem* fileSystem; in PFileSystemChdir() local
424 CHKLOG(rc, PFileSystemGetFS(absolutePath, &fileSystem, NULL)); in PFileSystemChdir()
[all …]
/external/srec/portable/include/
DPFileSystemImpl.h102 PORTABLE_API ESR_ReturnCode PFileSystemGetFS(const LCHAR* path, PFileSystem** fileSystem, LCHAR* re…