Searched refs:bFolder (Results 1 – 5 of 5) sorted by relevance
23 bool GetNextFile(ByteString* filename, bool* bFolder) override;54 bool FX_WindowsFolder::GetNextFile(ByteString* filename, bool* bFolder) { in GetNextFile() argument59 *bFolder = !!(m_FindData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY); in GetNextFile()
27 bool GetNextFile(ByteString* filename, bool* bFolder) override;53 bool FX_PosixFolder::GetNextFile(ByteString* filename, bool* bFolder) { in GetNextFile() argument64 *bFolder = S_ISDIR(deStat.st_mode); in GetNextFile()
21 virtual bool GetNextFile(ByteString* filename, bool* bFolder) = 0;
351 bool bFolder = false; in ScanPath() local352 while (handle->GetNextFile(&filename, &bFolder)) { in ScanPath()353 if (bFolder) { in ScanPath()365 if (bFolder) in ScanPath()
170 bool bFolder; in ScanPath() local171 while (handle->GetNextFile(&filename, &bFolder)) { in ScanPath()172 if (bFolder) { in ScanPath()190 bFolder ? ScanPath(fullpath) : ScanFile(fullpath); in ScanPath()