Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/libc++/include/experimental/
H A Dfilesystem168 bool is_socket(file_status s) noexcept;
169 bool is_socket(const path& p);
170 bool is_socket(const path& p, error_code& ec) noexcept;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp219 bool is_socket = in Connect() local
221 if (is_socket) { in Connect()
/freebsd-12.1/contrib/libc++/include/
H A Dfilesystem168 bool is_socket(file_status s) noexcept;
169 bool is_socket(const path& p);
170 bool is_socket(const path& p, error_code& ec) noexcept;
1725 inline _LIBCPP_INLINE_VISIBILITY bool is_socket(file_status __s) noexcept {
1729 inline _LIBCPP_INLINE_VISIBILITY bool is_socket(const path& __p) {
1730 return is_socket(__status(__p));
1733 inline _LIBCPP_INLINE_VISIBILITY bool is_socket(const path& __p,
1735 return is_socket(__status(__p, &__ec));
2063 bool is_socket() const { return __get_ft() == file_type::socket; }
2066 bool is_socket(error_code& __ec) const noexcept {