Home
last modified time | relevance | path

Searched refs:child_processes_inherit (Results 1 – 17 of 17) sorted by relevance

/openbsd/gnu/llvm/lldb/source/Host/common/
H A DSocket.cpp73 bool child_processes_inherit) in Socket() argument
76 m_child_processes_inherit(child_processes_inherit), in Socket()
115 std::make_unique<TCPSocket>(true, child_processes_inherit); in Create()
133 std::make_unique<AbstractSocket>(child_processes_inherit); in Create()
149 bool child_processes_inherit) { in TcpConnect() argument
155 Create(ProtocolTcp, child_processes_inherit, error)); in TcpConnect()
173 new TCPSocket(true, child_processes_inherit)); in TcpListen()
184 bool child_processes_inherit) { in UdpConnect() argument
332 if (!child_processes_inherit) in CreateSocket()
354 if (fd >= 0 && !child_processes_inherit) { in AcceptSocket()
[all …]
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()
55 UDPSocket::Connect(llvm::StringRef name, bool child_processes_inherit) { in Connect() argument
93 service_info_ptr->ai_protocol, child_processes_inherit, error); in Connect()
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()
69 bool child_processes_inherit) in TCPSocket() argument
70 : Socket(ProtocolTcp, should_close, child_processes_inherit) { in TCPSocket()
/openbsd/gnu/llvm/lldb/include/lldb/Host/
H A DSocket.h67 bool child_processes_inherit,
78 TcpListen(llvm::StringRef host_and_port, bool child_processes_inherit,
82 TcpConnect(llvm::StringRef host_and_port, bool child_processes_inherit);
85 UdpConnect(llvm::StringRef host_and_port, bool child_processes_inherit);
117 bool child_processes_inherit, Status &error);
120 bool child_processes_inherit, Status &error);
/openbsd/gnu/llvm/lldb/source/Host/posix/
H A DDomainSocket.cpp58 DomainSocket::DomainSocket(bool should_close, bool child_processes_inherit) in DomainSocket() argument
59 : Socket(ProtocolUnixDomain, should_close, child_processes_inherit) {} in DomainSocket()
62 bool child_processes_inherit) in DomainSocket() argument
63 : Socket(protocol, true, child_processes_inherit) {} in DomainSocket()
H A DPipePosix.cpp76 Status PipePosix::CreateNew(bool child_processes_inherit) { in CreateNew() argument
82 if (::pipe2(m_fds, (child_processes_inherit) ? 0 : O_CLOEXEC) == 0) in CreateNew()
87 if (!child_processes_inherit) { in CreateNew()
H A DConnectionFileDescriptorPosix.cpp54 ConnectionFileDescriptor::ConnectionFileDescriptor(bool child_processes_inherit) in ConnectionFileDescriptor() argument
57 m_child_processes_inherit(child_processes_inherit) { in ConnectionFileDescriptor()
807 bool child_processes_inherit) { in SetChildProcessesInherit() argument
808 m_child_processes_inherit = child_processes_inherit; in SetChildProcessesInherit()
H A DProcessLauncherPosixFork.cpp262 const bool child_processes_inherit = false; in LaunchProcess() local
263 error = pipe.CreateNew(child_processes_inherit); in LaunchProcess()
/openbsd/gnu/llvm/lldb/source/Host/linux/
H A DAbstractSocket.cpp16 AbstractSocket::AbstractSocket(bool child_processes_inherit) in AbstractSocket() argument
17 : DomainSocket(ProtocolUnixAbstract, child_processes_inherit) {} in AbstractSocket()
/openbsd/gnu/llvm/lldb/include/lldb/Host/common/
H A DUDPSocket.h17 UDPSocket(bool should_close, bool child_processes_inherit);
20 Connect(llvm::StringRef name, bool child_processes_inherit);
H A DTCPSocket.h19 TCPSocket(bool should_close, bool child_processes_inherit);
21 bool child_processes_inherit);
/openbsd/gnu/llvm/lldb/include/lldb/Host/posix/
H A DDomainSocket.h17 DomainSocket(bool should_close, bool child_processes_inherit);
26 DomainSocket(SocketProtocol protocol, bool child_processes_inherit);
H A DConnectionFileDescriptorPosix.h34 ConnectionFileDescriptor(bool child_processes_inherit = false);
69 void SetChildProcessesInherit(bool child_processes_inherit);
/openbsd/gnu/llvm/lldb/tools/lldb-server/
H A DAcceptor.h32 Status Accept(const bool child_processes_inherit, Connection *&conn);
35 const bool child_processes_inherit,
H A DAcceptor.cpp63 Status Acceptor::Accept(const bool child_processes_inherit, Connection *&conn) { in Accept() argument
83 const bool child_processes_inherit, in Create() argument
105 Socket::Create(socket_protocol, child_processes_inherit, error); in Create()
/openbsd/gnu/llvm/lldb/include/lldb/Host/linux/
H A DAbstractSocket.h17 AbstractSocket(bool child_processes_inherit);
/openbsd/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1212 const bool child_processes_inherit = false; in ConnectLocally() local
1214 TCPSocket listen_socket(true, child_processes_inherit); in ConnectLocally()