Searched defs:_Dir_base (Results 1 – 4 of 4) sorted by relevance
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/src/filesystem/ |
A D | dir-common.h | 49 struct _Dir_base in _GLIBCXX_VISIBILITY() struct 51 _Dir_base(DIR* dirp = nullptr) : dirp(dirp) { } in _GLIBCXX_VISIBILITY() 55 _Dir_base(const char* p, bool skip_permission_denied, in _GLIBCXX_VISIBILITY() function 71 _Dir_base(_Dir_base&& d) : dirp(std::exchange(d.dirp, nullptr)) { } in _GLIBCXX_VISIBILITY() function 73 _Dir_base& operator=(_Dir_base&&) = delete; in _GLIBCXX_VISIBILITY() 75 ~_Dir_base() { if (dirp) ::closedir(dirp); } in _GLIBCXX_VISIBILITY() 78 advance(bool skip_permission_denied, error_code& ec) noexcept in _GLIBCXX_VISIBILITY() 108 DIR* dirp; in _GLIBCXX_VISIBILITY()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/src/filesystem/ |
A D | dir-common.h | 74 struct _Dir_base in _GLIBCXX_VISIBILITY() struct 76 _Dir_base(posix::DIR* dirp = nullptr) : dirp(dirp) { } in _GLIBCXX_VISIBILITY() 80 _Dir_base(const posix::char_type* pathname, bool skip_permission_denied, in _GLIBCXX_VISIBILITY() argument 96 _Dir_base(_Dir_base&& d) : dirp(std::exchange(d.dirp, nullptr)) { } in _GLIBCXX_VISIBILITY() argument 98 _Dir_base& operator=(_Dir_base&&) = delete; in _GLIBCXX_VISIBILITY() 100 ~_Dir_base() { if (dirp) posix::closedir(dirp); } in _GLIBCXX_VISIBILITY() 103 advance(bool skip_permission_denied, error_code& ec) noexcept in _GLIBCXX_VISIBILITY() 133 static bool is_dot_or_dotdot(const char* s) noexcept in _GLIBCXX_VISIBILITY() 137 static bool is_dot_or_dotdot(const wchar_t* s) noexcept in _GLIBCXX_VISIBILITY() 141 posix::DIR* dirp; in _GLIBCXX_VISIBILITY()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/filesystem/ |
A D | dir-common.h | 74 struct _Dir_base in _GLIBCXX_VISIBILITY() struct 76 _Dir_base(posix::DIR* dirp = nullptr) : dirp(dirp) { } in _GLIBCXX_VISIBILITY() 80 _Dir_base(const posix::char_type* pathname, bool skip_permission_denied, in _GLIBCXX_VISIBILITY() argument 96 _Dir_base(_Dir_base&& d) : dirp(std::exchange(d.dirp, nullptr)) { } in _GLIBCXX_VISIBILITY() function 98 _Dir_base& operator=(_Dir_base&&) = delete; in _GLIBCXX_VISIBILITY() 100 ~_Dir_base() { if (dirp) posix::closedir(dirp); } in _GLIBCXX_VISIBILITY() 103 advance(bool skip_permission_denied, error_code& ec) noexcept in _GLIBCXX_VISIBILITY() 133 static bool is_dot_or_dotdot(const char* s) noexcept in _GLIBCXX_VISIBILITY() 137 static bool is_dot_or_dotdot(const wchar_t* s) noexcept in _GLIBCXX_VISIBILITY() 141 posix::DIR* dirp; in _GLIBCXX_VISIBILITY()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/src/filesystem/ |
A D | dir-common.h | 74 struct _Dir_base in _GLIBCXX_VISIBILITY() struct 76 _Dir_base(posix::DIR* dirp = nullptr) : dirp(dirp) { } in _GLIBCXX_VISIBILITY() 80 _Dir_base(const posix::char_type* pathname, bool skip_permission_denied, in _GLIBCXX_VISIBILITY() function 96 _Dir_base(_Dir_base&& d) : dirp(std::exchange(d.dirp, nullptr)) { } in _GLIBCXX_VISIBILITY() argument 98 _Dir_base& operator=(_Dir_base&&) = delete; in _GLIBCXX_VISIBILITY() 100 ~_Dir_base() { if (dirp) posix::closedir(dirp); } in _GLIBCXX_VISIBILITY() 103 advance(bool skip_permission_denied, error_code& ec) noexcept in _GLIBCXX_VISIBILITY() 133 static bool is_dot_or_dotdot(const char* s) noexcept in _GLIBCXX_VISIBILITY() 137 static bool is_dot_or_dotdot(const wchar_t* s) noexcept in _GLIBCXX_VISIBILITY() 141 posix::DIR* dirp; in _GLIBCXX_VISIBILITY()
|
Completed in 5 milliseconds