Home
last modified time | relevance | path

Searched refs:__stream_ (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/libcxx/src/filesystem/
H A Ddirectory_iterator.cpp110 __dir_stream(__dir_stream&& __ds) noexcept : __stream_(__ds.__stream_), in __dir_stream()
113 __ds.__stream_ = INVALID_HANDLE_VALUE; in __dir_stream()
117 : __stream_(INVALID_HANDLE_VALUE), __root_(root) { in __dir_stream()
122 __stream_ = ::FindFirstFileW((root / "*").c_str(), &__data_); in __dir_stream()
123 if (__stream_ == INVALID_HANDLE_VALUE) { in __dir_stream()
137 if (__stream_ == INVALID_HANDLE_VALUE) in ~__dir_stream()
142 bool good() const noexcept { return __stream_ != INVALID_HANDLE_VALUE; } in good()
145 while (::FindNextFileW(__stream_, &__data_)) { in advance()
170 if (!::FindClose(__stream_)) in close()
172 __stream_ = INVALID_HANDLE_VALUE; in close()
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Diosfwd259 __stream_type& __stream_;
268 : __stream_(__stream),
275 __stream_.flags(__fmtflags_);
276 __stream_.fill(__fill_);