Lines Matching refs:path
86 char path[FS_ENTRY_LONGNAME_MAX]; in CommandLS() local
87 (void)STD_TSPrintf(path, "%s/*", context->current); in CommandLS()
88 (void)FS_OpenDirectory(file, path, FS_FILEMODE_R); in CommandLS()
121 static void CommandCD(ExplorerContext *context, const char *path) in CommandCD() argument
125 if (STD_CompareString(path, ".") == 0) in CommandCD()
128 else if(STD_CompareString(path, "..") == 0) in CommandCD()
135 else if(*path) in CommandCD()
138 (cur[0] != '\0') ? "/" : "", path); in CommandCD()
207 char path[FS_ENTRY_LONGNAME_MAX]; in NitroMain() local
210 … (void)STD_TSPrintf(path, "%s/%s", explorer->current, explorer->entry[cursor].longname); in NitroMain()
211 if (!FS_OpenFileEx(file, path, FS_FILEMODE_R)) in NitroMain()
215 OS_TPrintf("%s\nOpenFile() failed (err=%d)\n", path, result); in NitroMain()