Home
last modified time | relevance | path

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

/third_party/python/Modules/
Dposixmodule.c1852 HANDLE hFindFile; in attributes_from_dir() local
1869 hFindFile = FindFirstFileW(filename, &FileData); in attributes_from_dir()
1873 if (hFindFile == INVALID_HANDLE_VALUE) { in attributes_from_dir()
1876 FindClose(hFindFile); in attributes_from_dir()
4007 HANDLE hFindFile = INVALID_HANDLE_VALUE; in _listdir_windows_no_opendir() local
4041 hFindFile = FindFirstFileW(wnamebuf, &wFileData); in _listdir_windows_no_opendir() local
4043 if (hFindFile == INVALID_HANDLE_VALUE) { in _listdir_windows_no_opendir()
4074 result = FindNextFileW(hFindFile, &wFileData); in _listdir_windows_no_opendir()
4086 if (hFindFile != INVALID_HANDLE_VALUE) { in _listdir_windows_no_opendir()
4087 if (FindClose(hFindFile) == FALSE) { in _listdir_windows_no_opendir()
/third_party/sqlite/src/
Dshell.c4887 HANDLE hFindFile; in statTimesToUtc() local
4894 hFindFile = FindFirstFileW(zUnicodeName, &fd); in statTimesToUtc()
4895 if( hFindFile!=NULL ){ in statTimesToUtc()
4899 FindClose(hFindFile); in statTimesToUtc()
/third_party/chromium/patch/
D0003-ohos-1115.patch85536 - HANDLE hFindFile;
85543 - hFindFile = FindFirstFileW(zUnicodeName, &fd);
85544 - if( hFindFile!=NULL ){
85548 - FindClose(hFindFile);
90105 + HANDLE hFindFile;
90112 + hFindFile = FindFirstFileW(zUnicodeName, &fd);
90113 + if( hFindFile!=NULL ){
90117 + FindClose(hFindFile);
123951 - HANDLE hFindFile;
123958 - hFindFile = FindFirstFileW(zUnicodeName, &fd);
[all …]