Home
last modified time | relevance | path

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

/freebsd/usr.sbin/bhyve/
H A Duart_backend.c57 bool is_socket; member
202 if (ttyread(&sc->tty, &ch) == 0 && sc->tty.is_socket) in uart_rxfifo_drain()
209 if (len == 0 && sc->tty.is_socket) in uart_rxfifo_drain()
226 if (ttywrite(&sc->tty, ch) == -1 && sc->tty.is_socket) in uart_rxfifo_putchar()
480 sc->tty.is_socket = true; in uart_tcp_backend()
542 if (retval == 0 && !sc->tty.is_socket) { in uart_tty_open()
/freebsd/contrib/llvm-project/libcxx/include/__filesystem/
H A Doperations.h210 inline _LIBCPP_HIDE_FROM_ABI bool is_socket(file_status __s) noexcept { return __s.type() == file_t… in is_socket() function
211 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()
H A Ddirectory_entry.h133 _LIBCPP_HIDE_FROM_ABI bool is_socket() const { return __get_ft() == file_type::socket; } in is_socket() function
135 …_LIBCPP_HIDE_FROM_ABI bool is_socket(error_code& __ec) const noexcept { return __get_ft(&__ec) == … in is_socket() function
/freebsd/contrib/llvm-project/libcxx/include/
H A Dfilesystem207 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;
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdTsSymbolMap.inc33 SYMBOL(is_socket, std::experimental::filesystem::, <experimental/filesystem>)
H A DStdSymbolMap.inc3458 SYMBOL(is_socket, std::filesystem::, <filesystem>)
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp700 bool is_socket = in ConnectFD()
702 if (is_socket) in ConnectFD()
703 bool is_socket = ConnectFD() local
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dfilesystem.cppm