Lines Matching refs:hFindFile
1117 HANDLE hFindFile; in attributes_from_dir() local
1119 hFindFile = FindFirstFileA(pszFile, &FileData); in attributes_from_dir()
1120 if (hFindFile == INVALID_HANDLE_VALUE) in attributes_from_dir()
1122 FindClose(hFindFile); in attributes_from_dir()
1135 HANDLE hFindFile; in attributes_from_dir_w() local
1137 hFindFile = FindFirstFileW(pszFile, &FileData); in attributes_from_dir_w()
1138 if (hFindFile == INVALID_HANDLE_VALUE) in attributes_from_dir_w()
1140 FindClose(hFindFile); in attributes_from_dir_w()
2295 HANDLE hFindFile; in posix_listdir() local
2325 hFindFile = FindFirstFileW(wnamebuf, &wFileData); in posix_listdir() local
2327 if (hFindFile == INVALID_HANDLE_VALUE) { in posix_listdir()
2357 result = FindNextFileW(hFindFile, &wFileData); in posix_listdir()
2364 FindClose(hFindFile); in posix_listdir()
2370 if (FindClose(hFindFile) == FALSE) { in posix_listdir()
2397 hFindFile = FindFirstFile(namebuf, &FileData); in posix_listdir() local
2399 if (hFindFile == INVALID_HANDLE_VALUE) { in posix_listdir()
2425 result = FindNextFile(hFindFile, &FileData); in posix_listdir()
2432 FindClose(hFindFile); in posix_listdir()
2437 if (FindClose(hFindFile) == FALSE) { in posix_listdir()