Lines Matching refs:explorer
63 static ExplorerContext explorer[1]; variable
173 CommandCD(explorer, ""); in NitroMain()
180 if (++cursor >= explorer->entry_count) in NitroMain()
182 cursor -= explorer->entry_count; in NitroMain()
190 cursor += explorer->entry_count; in NitroMain()
197 if (cursor < explorer->entry_count) in NitroMain()
199 if ((explorer->entry[cursor].attributes & FS_ATTRIBUTE_IS_DIRECTORY) != 0) in NitroMain()
201 CommandCD(explorer, explorer->entry[cursor].longname); in NitroMain()
210 … (void)STD_TSPrintf(path, "%s/%s", explorer->current, explorer->entry[cursor].longname); in NitroMain()
224 (explorer->entry[cursor].filesize > 0x7FFFFFFFUL) ? in NitroMain()
282 CommandCD(explorer, ".."); in NitroMain()
293 int wy = 15 * explorer->entry_count + 10; in NitroMain()
297 DEMODrawText(ox, 10, "%s", explorer->current); in NitroMain()
299 for (i = 0; i < explorer->entry_count; ++i) in NitroMain()
302 const FSDirectoryEntryInfo *p = &explorer->entry[i]; in NitroMain()