Home
last modified time | relevance | path

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

/external/libcxx/src/experimental/filesystem/
Ddirectory_iterator.cpp70 : __stream_(__ds.__stream_), __root_(std::move(__ds.__root_)), in __dir_stream()
72 __ds.__stream_ = INVALID_HANDLE_VALUE; in __dir_stream()
76 : __stream_(INVALID_HANDLE_VALUE), __root_(root) { in __dir_stream()
77 __stream_ = ::FindFirstFile(root.c_str(), &__data_); in __dir_stream()
78 if (__stream_ == INVALID_HANDLE_VALUE) { in __dir_stream()
89 if (__stream_ == INVALID_HANDLE_VALUE) in ~__dir_stream()
94 bool good() const noexcept { return __stream_ != INVALID_HANDLE_VALUE; } in good()
97 while (::FindNextFile(__stream_, &__data_)) { in advance()
111 if (!::FindClose(__stream_)) in close()
113 __stream_ = INVALID_HANDLE_VALUE; in close()
[all …]
/external/libcxx/include/
Dios1022 __stream_type& __stream_;
1031 : __stream_(__stream),
1038 __stream_.flags(__fmtflags_);
1039 __stream_.fill(__fill_);