Searched refs:__stream_ (Results 1 – 1 of 1) sorted by relevance
103 __dir_stream(__dir_stream&& __ds) noexcept : __stream_(__ds.__stream_), in __dir_stream()106 __ds.__stream_ = INVALID_HANDLE_VALUE; in __dir_stream()110 : __stream_(INVALID_HANDLE_VALUE), __root_(root) { in __dir_stream()111 __stream_ = ::FindFirstFileEx(root.c_str(), &__data_); in __dir_stream()112 if (__stream_ == INVALID_HANDLE_VALUE) { in __dir_stream()123 if (__stream_ == INVALID_HANDLE_VALUE) in ~__dir_stream()128 bool good() const noexcept { return __stream_ != INVALID_HANDLE_VALUE; } in good()131 while (::FindNextFile(__stream_, &__data_)) { in advance()152 if (!::FindClose(__stream_)) in close()154 __stream_ = INVALID_HANDLE_VALUE; in close()[all …]