Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DIOObject.h33 IOObject(FDType type, bool should_close) in IOObject() argument
34 : m_fd_type(type), m_should_close_fd(should_close) {} in IOObject()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/common/
H A DTCPSocket.h20 TCPSocket(bool should_close, bool child_processes_inherit);
21 TCPSocket(NativeSocket socket, bool should_close,
H A DUDPSocket.h18 UDPSocket(bool should_close, bool child_processes_inherit);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DTCPSocket.cpp49 TCPSocket::TCPSocket(bool should_close, bool child_processes_inherit) in TCPSocket() argument
50 : Socket(ProtocolTcp, should_close, child_processes_inherit) {} in TCPSocket()
58 TCPSocket::TCPSocket(NativeSocket socket, bool should_close, in TCPSocket() argument
60 : Socket(ProtocolTcp, should_close, child_processes_inherit) { in TCPSocket()
H A DUDPSocket.cpp37 UDPSocket::UDPSocket(bool should_close, bool child_processes_inherit) in UDPSocket() argument
38 : Socket(ProtocolUdp, should_close, child_processes_inherit) {} in UDPSocket()
H A DSocket.cpp73 Socket::Socket(SocketProtocol protocol, bool should_close, in Socket() argument
75 : IOObject(eFDTypeSocket, should_close), m_protocol(protocol), in Socket()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DDomainSocket.cpp61 DomainSocket::DomainSocket(bool should_close, bool child_processes_inherit) in DomainSocket() argument
62 : Socket(ProtocolUnixDomain, should_close, child_processes_inherit) {} in DomainSocket()
/freebsd-12.1/cddl/contrib/opensolaris/cmd/zfs/
H A Dzfs_iter.c95 boolean_t should_close = B_TRUE; in zfs_callback() local
123 should_close = B_FALSE; in zfs_callback()
149 if (should_close) in zfs_callback()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/posix/
H A DDomainSocket.h18 DomainSocket(bool should_close, bool child_processes_inherit);
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DSocket.h104 Socket(SocketProtocol protocol, bool should_close,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DDebugger.cpp1248 const bool should_close = true; in EnableLog() local
1259 GetOutputFile()->GetFile().GetDescriptor(), !should_close, unbuffered); in EnableLog()
1275 std::make_shared<llvm::raw_fd_ostream>(FD, should_close, unbuffered); in EnableLog()