Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DPath.inc1028 IT.IterationHandle = intptr_t(FindHandle.take());
1040 if (IT.IterationHandle != 0)
1042 ScopedFindHandle close(HANDLE(IT.IterationHandle));
1043 IT.IterationHandle = 0;
1050 if (!::FindNextFileW(HANDLE(IT.IterationHandle), &FindData)) {
/llvm-project-15.0.7/llvm/lib/Support/Unix/
H A DPath.inc900 it.IterationHandle = reinterpret_cast<intptr_t>(directory);
908 if (it.IterationHandle)
909 ::closedir(reinterpret_cast<DIR *>(it.IterationHandle));
910 it.IterationHandle = 0;
931 dirent *CurDir = ::readdir(reinterpret_cast<DIR *>(It.IterationHandle));
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DFileSystem.h1414 intptr_t IterationHandle = 0; member