Searched refs:find_handle (Results 1 - 5 of 5) sorted by relevance

/external/fio/os/windows/posix/include/
H A Ddirent.h14 HANDLE find_handle; member in struct:dirent_ctx
/external/protobuf/src/google/protobuf/testing/
H A Dfile.cc142 HANDLE find_handle = FindFirstFile((name + "/*").c_str(), &find_data); local
143 if (find_handle == INVALID_HANDLE_VALUE) {
161 } while(FindNextFile(find_handle, &find_data));
162 FindClose(find_handle);
/external/google-breakpad/src/client/windows/unittests/
H A Dexception_handler_death_test.cc289 HANDLE find_handle = FindFirstFileW(search_path.c_str(), &find_data); local
290 if (find_handle == INVALID_HANDLE_VALUE)
305 } while (FindNextFile(find_handle, &find_data));
306 FindClose(find_handle);
/external/fio/os/windows/
H A Dposix.c829 dc->find_handle = INVALID_HANDLE_VALUE;
850 if (dirp != NULL && dirp->find_handle != INVALID_HANDLE_VALUE)
851 FindClose(dirp->find_handle);
865 if (dirp->find_handle == INVALID_HANDLE_VALUE) {
868 dirp->find_handle = FindFirstFileA(search_pattern, &find_data);
869 if (dirp->find_handle == INVALID_HANDLE_VALUE)
872 if (!FindNextFile(dirp->find_handle, &find_data))
/external/jhead/
H A Djhead.c488 long find_handle;
502 find_handle = _findfirst(FilePattern, &finddata);
505 if (find_handle == -1) break;
527 if (_findnext(find_handle, &finddata) != 0) break;
529 _findclose(find_handle);

Completed in 252 milliseconds