Home
last modified time | relevance | path

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

/openbsd/gnu/usr.bin/perl/cpan/Archive-Tar/lib/Archive/Tar/
H A DFile.pm711 sub is_socket { local $^W; SOCKET == $_[0]->type } subroutine
/openbsd/gnu/llvm/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
/openbsd/gnu/llvm/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp702 bool is_socket = in ConnectFD() local