Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/libcxx/src/filesystem/
H A Ddirectory_iterator.cpp38 …: __stream_(__ds.__stream_), __root_(std::move(__ds.__root_)), __entry_(std::move(__ds.__entry_)) { in __dir_stream()
39 __ds.__stream_ = INVALID_HANDLE_VALUE; in __dir_stream()
61 if (__stream_ == INVALID_HANDLE_VALUE) in ~__dir_stream()
93 if (!::FindClose(__stream_)) in close()
95 __stream_ = INVALID_HANDLE_VALUE; in close()
113 …: __stream_(other.__stream_), __root_(std::move(other.__root_)), __entry_(std::move(other.__entry_… in __dir_stream()
114 other.__stream_ = nullptr; in __dir_stream()
129 if (__stream_) in ~__dir_stream()
154 if (::closedir(__stream_) == -1) in close()
156 __stream_ = nullptr; in close()
[all …]
/freebsd-14.2/contrib/llvm-project/libcxx/include/__ranges/
H A Distream_view.h47 : __stream_(std::addressof(__stream)) {} in basic_istream_view()
50 *__stream_ >> __value_; in begin()
57 basic_istream<_CharT, _Traits>* __stream_;
79 *__parent_->__stream_ >> __parent_->__value_;
95 return __parent_->__stream_; in __get_parent_stream()
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Diosfwd175 __stream_type& __stream_;
184 : __stream_(__stream), __fmtflags_(__stream.flags()), __fill_(__stream.fill()) {}
186 __stream_.flags(__fmtflags_);
187 __stream_.fill(__fill_);