Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DTCPSocket.h19 TCPSocket(bool should_close, bool child_processes_inherit);
20 TCPSocket(NativeSocket socket, bool should_close,
H A DUDPSocket.h17 UDPSocket(bool should_close, bool child_processes_inherit);
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DTCPSocket.cpp59 TCPSocket::TCPSocket(bool should_close, bool child_processes_inherit) in TCPSocket() argument
60 : Socket(ProtocolTcp, should_close, child_processes_inherit) {} in TCPSocket()
68 TCPSocket::TCPSocket(NativeSocket socket, bool should_close, in TCPSocket() argument
70 : Socket(ProtocolTcp, should_close, child_processes_inherit) { in TCPSocket()
H A DUDPSocket.cpp34 UDPSocket::UDPSocket(bool should_close, bool child_processes_inherit) in UDPSocket() argument
35 : Socket(ProtocolUdp, should_close, child_processes_inherit) {} in UDPSocket()
H A DSocket.cpp73 Socket::Socket(SocketProtocol protocol, bool should_close, in Socket() argument
78 m_should_close_fd(should_close) {} in Socket()
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DDomainSocket.cpp59 DomainSocket::DomainSocket(bool should_close, bool child_processes_inherit) in DomainSocket()
60 : Socket(ProtocolUnixDomain, should_close, child_processes_inherit) {}
58 DomainSocket(bool should_close,bool child_processes_inherit) DomainSocket() argument
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DDomainSocket.h17 DomainSocket(bool should_close, bool child_processes_inherit);
/freebsd/sys/contrib/openzfs/cmd/zfs/
H A Dzfs_iter.c95 boolean_t should_close = B_TRUE; in zfs_callback() local
122 should_close = B_FALSE; in zfs_callback()
164 if (should_close) in zfs_callback()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DSocket.h108 Socket(SocketProtocol protocol, bool should_close,
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DLog.cpp380 StreamLogHandler::StreamLogHandler(int fd, bool should_close, in StreamLogHandler() argument
382 : 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.cpp1618 CreateLogHandler(LogHandlerKind log_handler_kind, int fd, bool should_close, in CreateLogHandler() argument
1622 return std::make_shared<StreamLogHandler>(fd, should_close, buffer_size); in CreateLogHandler()