Searched refs:is_socket (Results 1 – 7 of 7) sorted by relevance
211 inline _LIBCPP_HIDE_FROM_ABI bool is_socket(file_status __s) noexcept { return __s.type() == file_t… in is_socket() function212 inline _LIBCPP_HIDE_FROM_ABI bool is_socket(const path& __p) { return is_socket(__status(__p)); } in is_socket() function213 inline _LIBCPP_HIDE_FROM_ABI bool is_socket(const path& __p, error_code& __ec) noexcept { in is_socket() function214 return is_socket(__status(__p, &__ec)); in is_socket()
134 _LIBCPP_HIDE_FROM_ABI bool is_socket() const { return __get_ft() == file_type::socket; } in is_socket() function136 …_LIBCPP_HIDE_FROM_ABI bool is_socket(error_code& __ec) const noexcept { return __get_ft(&__ec) == … in is_socket() function
207 bool is_socket() const;208 bool is_socket(error_code& ec) const noexcept;462 bool is_socket(file_status s) noexcept;463 bool is_socket(const path& p);464 bool is_socket(const path& p, error_code& ec) noexcept;
33 SYMBOL(is_socket, std::experimental::filesystem::, <experimental/filesystem>)
3458 SYMBOL(is_socket, std::filesystem::, <filesystem>)
700 bool is_socket = in ConnectFD() local702 if (is_socket) in ConnectFD()
86 using std::filesystem::is_socket;