Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/libcxx/include/__filesystem/
H A Ddirectory_entry.h134 _LIBCPP_HIDE_FROM_ABI bool is_socket() const { return __get_ft() == file_type::socket; } is_socket() function
136 _LIBCPP_HIDE_FROM_ABI bool is_socket(error_code& __ec) const noexcept { return __get_ft(&__ec) == file_type::socket; } is_socket() function
H A Doperations.h211 inline _LIBCPP_HIDE_FROM_ABI bool is_socket(const path& __p) { return is_socket(__status(__p)); } in is_socket() function
212 inline _LIBCPP_HIDE_FROM_ABI bool is_socket(const path& __p, error_code& __ec) noexcept { in is_socket() function
213 return is_socket(__status(__p, &__ec)); in is_socket() function
/freebsd-src/contrib/llvm-project/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp700 bool is_socket = in ConnectFD() local