Home
last modified time | relevance | path

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

/third_party/boost/boost/winapi/
Dfile_management.hpp69 FindNextFileA(boost::winapi::HANDLE_ hFindFile, ::_WIN32_FIND_DATAA* lpFindFileData);
87 FindNextFileW(boost::winapi::HANDLE_ hFindFile, ::_WIN32_FIND_DATAW* lpFindFileData);
152 FindClose(boost::winapi::HANDLE_ hFindFile);
377 BOOST_FORCEINLINE BOOL_ FindNextFileA(HANDLE_ hFindFile, WIN32_FIND_DATAA_* lpFindFileData) in FindNextFileA() argument
379 return ::FindNextFileA(hFindFile, reinterpret_cast< ::_WIN32_FIND_DATAA* >(lpFindFileData)); in FindNextFileA()
382 BOOST_FORCEINLINE BOOL_ find_next_file(HANDLE_ hFindFile, WIN32_FIND_DATAA_* lpFindFileData) in find_next_file() argument
384 return ::FindNextFileA(hFindFile, reinterpret_cast< ::_WIN32_FIND_DATAA* >(lpFindFileData)); in find_next_file()
468 BOOST_FORCEINLINE BOOL_ FindNextFileW(HANDLE_ hFindFile, WIN32_FIND_DATAW_* lpFindFileData) in FindNextFileW() argument
470 return ::FindNextFileW(hFindFile, reinterpret_cast< ::_WIN32_FIND_DATAW* >(lpFindFileData)); in FindNextFileW()
473 BOOST_FORCEINLINE BOOL_ find_next_file(HANDLE_ hFindFile, WIN32_FIND_DATAW_* lpFindFileData) in find_next_file() argument
[all …]
/third_party/boost/boost/regex/v4/
Dfileiter.hpp106 bool _fi_FindNextFile(_fi_find_handle hFindFile, _fi_find_data* lpFindFileData);
107 bool _fi_FindClose(_fi_find_handle hFindFile);
/third_party/boost/boost/interprocess/detail/
Dwin32_api.hpp660 inline bool find_next_file(void *hFindFile, win32_find_data *lpFindFileData) in find_next_file() argument
661 { return FindNextFileA(hFindFile, lpFindFileData) != 0; } in find_next_file()
/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.c2409 HANDLE hFindFile; in statTimesToUtc() local
2416 hFindFile = FindFirstFileW(zUnicodeName, &fd); in statTimesToUtc()
2417 if( hFindFile!=NULL ){ in statTimesToUtc()
2421 FindClose(hFindFile); in statTimesToUtc()
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch80133 - HANDLE hFindFile;
80140 - hFindFile = FindFirstFileW(zUnicodeName, &fd);
80141 - if( hFindFile!=NULL ){
80145 - FindClose(hFindFile);
84702 + HANDLE hFindFile;
84709 + hFindFile = FindFirstFileW(zUnicodeName, &fd);
84710 + if( hFindFile!=NULL ){
84714 + FindClose(hFindFile);
117768 - HANDLE hFindFile;
117775 - hFindFile = FindFirstFileW(zUnicodeName, &fd);
[all …]