Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/include/__filesystem/
H A Ddirectory_entry.h164 bool is_socket() const { return __get_ft() == file_type::socket; } in is_socket() function
167 bool is_socket(error_code& __ec) const noexcept { in is_socket() function
H A Doperations.h136 inline _LIBCPP_HIDE_FROM_ABI bool is_socket(file_status __s) noexcept { return __s.type() == file_t… in is_socket() function
137 inline _LIBCPP_HIDE_FROM_ABI bool is_socket(const path& __p) { return is_socket(__status(__p)); } in is_socket() function
138 inline _LIBCPP_HIDE_FROM_ABI bool is_socket(const path& __p, error_code& __ec) noexcept { return is… in is_socket() function
/llvm-project-15.0.7/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp702 bool is_socket = in ConnectFD() local