Lines Matching refs:aEntry
178 struct _finddata_t aEntry; in GatherFileNames() local
190 hFile = _findfirst( sFilter, &aEntry ); in GatherFileNames()
193 bFindMore = _findnext( hFile, &aEntry ) ) in GatherFileNames()
197 sNew += aEntry.name; in GatherFileNames()
257 struct _finddata_t aEntry; in GatherSubDirectories() local
265 hFile = _findfirst( sFilter, &aEntry ); in GatherSubDirectories()
268 bFindMore = _findnext( hFile, &aEntry ) ) in GatherSubDirectories()
270 if (aEntry.attrib == _A_SUBDIR) in GatherSubDirectories()
273 if ( strchr(aEntry.name,'.') == 0 in GatherSubDirectories()
274 && strncmp(aEntry.name, "wnt", 3) != 0 in GatherSubDirectories()
275 && strncmp(aEntry.name, "unx", 3) != 0 ) in GatherSubDirectories()
277 sNew = aEntry.name; in GatherSubDirectories()