Home
last modified time | relevance | path

Searched refs:hFindFile (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Modules/
Dposixmodule.c1111 HANDLE hFindFile; in attributes_from_dir() local
1113 hFindFile = FindFirstFileA(pszFile, &FileData); in attributes_from_dir()
1114 if (hFindFile == INVALID_HANDLE_VALUE) in attributes_from_dir()
1116 FindClose(hFindFile); in attributes_from_dir()
1129 HANDLE hFindFile; in attributes_from_dir_w() local
1131 hFindFile = FindFirstFileW(pszFile, &FileData); in attributes_from_dir_w()
1132 if (hFindFile == INVALID_HANDLE_VALUE) in attributes_from_dir_w()
1134 FindClose(hFindFile); in attributes_from_dir_w()
2289 HANDLE hFindFile; in posix_listdir() local
2319 hFindFile = FindFirstFileW(wnamebuf, &wFileData); in posix_listdir() local
[all …]