Lines Matching refs:file
77 FSFile file[1]; in CommandLS() local
78 FS_InitFile(file); in CommandLS()
82 (void)FS_OpenTopLevelDirectory(file); in CommandLS()
88 (void)FS_OpenDirectory(file, path, FS_FILEMODE_R); in CommandLS()
90 if (FS_IsDir(file)) in CommandLS()
93 FS_ReadDirectory(file, &context->entry[context->entry_count])) in CommandLS()
97 (void)FS_CloseDirectory(file); in CommandLS()
208 FSFile file[1]; in NitroMain() local
209 FS_InitFile(file); in NitroMain()
211 if (!FS_OpenFileEx(file, path, FS_FILEMODE_R)) in NitroMain()
214 FSResult result = FS_GetResultCode(file); in NitroMain()
258 int n = FS_ReadFile(file, tmpbuf, sizeof(tmpbuf) - 1); in NitroMain()
263 … OS_TPrintf("\n---FS error(%d)---\n", FS_GetResultCode(file)); in NitroMain()
274 (void)FS_CloseFile(file); in NitroMain()