Lines Matching refs:path
87 s32 DEMOFSOpenFile(const char* path, DEMOFSFileInfo* info) in DEMOFSOpenFile() argument
89 return DEMOFSOpenFileMode(path, info, "r"); in DEMOFSOpenFile()
93 s32 DEMOFSOpenFileMode(const char* path, DEMOFSFileInfo* info, const char* mode) in DEMOFSOpenFileMode() argument
99 if (path==NULL) { in DEMOFSOpenFileMode()
111 if (path[0]!='/') { in DEMOFSOpenFileMode()
116 strlcat(openPath, path, 256); in DEMOFSOpenFileMode()
132 DEMOPrintf("DEMOFS Error: FSOpenFile(%s) returned %d!\n", path, result); in DEMOFSOpenFileMode()
488 s32 DEMOFSRemove(const char *path, BOOL ignoreError) in DEMOFSRemove() argument
494 if (path==NULL) { in DEMOFSRemove()
506 if (path[0]!='/') { in DEMOFSRemove()
511 strlcat(prefixedPath, path, 256); in DEMOFSRemove()
527 DEMOPrintf("DEMOFS Error: FSRemove(%s) returned %d!\n", path, result); in DEMOFSRemove()