| /freebsd/contrib/llvm-project/lldb/source/Host/posix/ |
| H A D | DomainSocket.cpp | 58 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 D | DomainSocket.h | 19 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 D | TCPSocket.h | 22 explicit TCPSocket(bool should_close); 23 TCPSocket(NativeSocket socket, bool should_close);
|
| H A D | UDPSocket.h | 17 explicit UDPSocket(bool should_close);
|
| /freebsd/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | Socket.cpp | 170 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 D | TCPSocket.cpp | 41 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 D | UDPSocket.cpp | 35 UDPSocket::UDPSocket(bool should_close) : Socket(ProtocolUdp, should_close) {} in UDPSocket() argument
|
| /freebsd/sys/contrib/openzfs/cmd/zfs/ |
| H A D | zfs_iter.c | 85 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 D | Socket.h | 174 Socket(SocketProtocol protocol, bool should_close);
|
| /freebsd/contrib/llvm-project/lldb/source/Utility/ |
| H A D | Log.cpp | 392 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 D | Log.h | 62 StreamLogHandler(int fd, bool should_close, size_t buffer_size = 0);
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | Debugger.cpp | 1789 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()
|