Home
last modified time | relevance | path

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

/external/libcxx/src/filesystem/
Ddirectory_iterator.cpp103 __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 …]
/external/libcxx/include/
Dios1025 __stream_type& __stream_;
1034 : __stream_(__stream),
1041 __stream_.flags(__fmtflags_);
1042 __stream_.fill(__fill_);