Home
last modified time | relevance | path

Searched refs:should_close (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DDomainSocket.cpp58 DomainSocket::DomainSocket(bool should_close) in DomainSocket() argument
59 : DomainSocket(kInvalidSocketValue, should_close) {} in DomainSocket()
61 DomainSocket::DomainSocket(NativeSocket socket, bool should_close) in DomainSocket() argument
62 : Socket(ProtocolUnixDomain, should_close) { in DomainSocket()
76 bool should_close) in DomainSocket() argument
77 : Socket(protocol, should_close) { in DomainSocket()
223 DomainSocket::FromBoundNativeSocket(NativeSocket sockfd, bool should_close) { in FromBoundNativeSocket() argument
234 return std::make_unique<AbstractSocket>(sockfd, should_close); in FromBoundNativeSocket()
236 return std::make_unique<DomainSocket>(sockfd, should_close); in FromBoundNativeSocket()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DDomainSocket.h19 DomainSocket(NativeSocket socket, bool should_close);
20 explicit DomainSocket(bool should_close);
39 FromBoundNativeSocket(NativeSocket sockfd, bool should_close);
43 DomainSocket(SocketProtocol protocol, NativeSocket socket, bool should_close);
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DTCPSocket.h22 explicit TCPSocket(bool should_close);
23 TCPSocket(NativeSocket socket, bool should_close);
H A DUDPSocket.h17 explicit UDPSocket(bool should_close);
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DSocket.cpp170 Socket::Socket(SocketProtocol protocol, bool should_close) in Socket() argument
172 m_socket(kInvalidSocketValue), m_should_close_fd(should_close) {} in Socket()
204 const bool should_close = true; in Create() local
208 socket_up = std::make_unique<TCPSocket>(should_close); in Create()
211 socket_up = std::make_unique<UDPSocket>(should_close); in Create()
215 socket_up = std::make_unique<DomainSocket>(should_close); in Create()
H A DTCPSocket.cpp41 TCPSocket::TCPSocket(bool should_close) : Socket(ProtocolTcp, should_close) {} in TCPSocket() argument
48 TCPSocket::TCPSocket(NativeSocket socket, bool should_close) in TCPSocket() argument
49 : Socket(ProtocolTcp, should_close) { in TCPSocket()
H A DUDPSocket.cpp35 UDPSocket::UDPSocket(bool should_close) : Socket(ProtocolUdp, should_close) {} in UDPSocket() argument
/freebsd/sys/contrib/openzfs/cmd/zfs/
H A Dzfs_iter.c85 boolean_t should_close = B_TRUE; in zfs_callback() local
112 should_close = B_FALSE; in zfs_callback()
154 if (should_close) in zfs_callback()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DSocket.h174 Socket(SocketProtocol protocol, bool should_close);
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DLog.cpp392 StreamLogHandler::StreamLogHandler(int fd, bool should_close, in StreamLogHandler() argument
394 : m_stream(fd, should_close, buffer_size == 0) { in StreamLogHandler()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DLog.h62 StreamLogHandler(int fd, bool should_close, size_t buffer_size = 0);
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp1789 CreateLogHandler(LogHandlerKind log_handler_kind, int fd, bool should_close, in CreateLogHandler() argument
1793 return std::make_shared<StreamLogHandler>(fd, should_close, buffer_size); in CreateLogHandler()