Searched defs:hFindFile (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
H A Dposixmodule.c1111 HANDLE hFindFile; local
1113 hFindFile = FindFirstFileA(pszFile, &FileData);
1114 if (hFindFile == INVALID_HANDLE_VALUE)
1116 FindClose(hFindFile);
1129 HANDLE hFindFile; local
1131 hFindFile = FindFirstFileW(pszFile, &FileData);
1132 if (hFindFile == INVALID_HANDLE_VALUE)
1134 FindClose(hFindFile);
2289 HANDLE hFindFile; local
2319 hFindFile local
[all...]
/external/python/cpython3/Modules/
H A Dposixmodule.c1484 HANDLE hFindFile; local
1486 hFindFile = FindFirstFileW(pszFile, &FileData);
1487 if (hFindFile == INVALID_HANDLE_VALUE)
1489 FindClose(hFindFile);
3387 HANDLE hFindFile = INVALID_HANDLE_VALUE; local
3421 hFindFile = FindFirstFileW(wnamebuf, &wFileData); local
3423 if (hFindFile == INVALID_HANDLE_VALUE) {
3454 result = FindNextFileW(hFindFile, &wFileData);
3466 if (hFindFile != INVALID_HANDLE_VALUE) {
3467 if (FindClose(hFindFile)
[all...]

Completed in 186 milliseconds