Searched refs:child_processes_inherit (Results 1 - 15 of 15) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DSocket.h57 bool child_processes_inherit,
68 bool child_processes_inherit, Socket *&socket,
71 bool child_processes_inherit, Socket *&socket);
73 bool child_processes_inherit, Socket *&socket);
75 bool child_processes_inherit,
78 bool child_processes_inherit, Socket *&socket);
80 bool child_processes_inherit,
83 bool child_processes_inherit,
117 bool child_processes_inherit, Status &error);
120 bool child_processes_inherit, Statu
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DUDPSocket.h17 UDPSocket(bool should_close, bool child_processes_inherit);
19 static Status 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);
/freebsd-11-stable/contrib/llvm-project/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.h42 ConnectionFileDescriptor(bool child_processes_inherit = false);
74 void SetChildProcessesInherit(bool child_processes_inherit);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DSocket.cpp76 bool child_processes_inherit)
79 m_child_processes_inherit(child_processes_inherit),
110 bool child_processes_inherit,
118 std::make_unique<TCPSocket>(true, child_processes_inherit);
122 std::make_unique<UDPSocket>(true, child_processes_inherit);
127 std::make_unique<DomainSocket>(true, child_processes_inherit);
136 std::make_unique<AbstractSocket>(child_processes_inherit);
151 bool child_processes_inherit, Socket *&socket) {
158 Create(ProtocolTcp, child_processes_inherit, error));
170 bool child_processes_inherit, Socke
75 Socket(SocketProtocol protocol, bool should_close, bool child_processes_inherit) argument
109 Create(const SocketProtocol protocol, bool child_processes_inherit, Status &error) argument
150 TcpConnect(llvm::StringRef host_and_port, bool child_processes_inherit, Socket *&socket) argument
169 TcpListen(llvm::StringRef host_and_port, bool child_processes_inherit, Socket *&socket, Predicate<uint16_t> *predicate, int backlog) argument
208 UdpConnect(llvm::StringRef host_and_port, bool child_processes_inherit, Socket *&socket) argument
217 UnixDomainConnect(llvm::StringRef name, bool child_processes_inherit, Socket *&socket) argument
233 UnixDomainAccept(llvm::StringRef name, bool child_processes_inherit, Socket *&socket) argument
249 UnixAbstractConnect(llvm::StringRef name, bool child_processes_inherit, Socket *&socket) argument
264 UnixAbstractAccept(llvm::StringRef name, bool child_processes_inherit, Socket *&socket) argument
439 CreateSocket(const int domain, const int type, const int protocol, bool child_processes_inherit, Status &error) argument
455 AcceptSocket(NativeSocket sockfd, struct sockaddr *addr, socklen_t *addrlen, bool child_processes_inherit, Status &error) argument
[all...]
H A DUDPSocket.cpp36 UDPSocket::UDPSocket(bool should_close, bool child_processes_inherit) argument
37 : Socket(ProtocolUdp, should_close, child_processes_inherit) {}
56 Status UDPSocket::Connect(llvm::StringRef name, bool child_processes_inherit, argument
97 service_info_ptr->ai_protocol, child_processes_inherit, error);
H A DTCPSocket.cpp49 TCPSocket::TCPSocket(bool should_close, bool child_processes_inherit) argument
50 : Socket(ProtocolTcp, should_close, child_processes_inherit) {}
59 bool child_processes_inherit)
60 : Socket(ProtocolTcp, should_close, child_processes_inherit) {
58 TCPSocket(NativeSocket socket, bool should_close, bool child_processes_inherit) argument
/freebsd-11-stable/contrib/llvm-project/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.cpp62 Status Acceptor::Accept(const bool child_processes_inherit, Connection *&conn) { argument
82 const bool child_processes_inherit,
109 Socket::Create(socket_protocol, child_processes_inherit, error);
81 Create(StringRef name, const bool child_processes_inherit, Status &error) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/
H A DDomainSocket.cpp61 DomainSocket::DomainSocket(bool should_close, bool child_processes_inherit) argument
62 : Socket(ProtocolUnixDomain, should_close, child_processes_inherit) {}
65 bool child_processes_inherit)
66 : Socket(protocol, true, child_processes_inherit) {}
64 DomainSocket(SocketProtocol protocol, bool child_processes_inherit) argument
H A DProcessLauncherPosixFork.cpp186 const bool child_processes_inherit = false; local
187 error = pipe.CreateNew(child_processes_inherit);
H A DPipePosix.cpp86 Status PipePosix::CreateNew(bool child_processes_inherit) { argument
92 if (::pipe2(m_fds, (child_processes_inherit) ? 0 : O_CLOEXEC) == 0)
97 if (!child_processes_inherit) {
H A DConnectionFileDescriptorPosix.cpp76 ConnectionFileDescriptor::ConnectionFileDescriptor(bool child_processes_inherit) argument
79 m_child_processes_inherit(child_processes_inherit) {
763 bool child_processes_inherit) {
764 m_child_processes_inherit = child_processes_inherit;
762 SetChildProcessesInherit( bool child_processes_inherit) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1255 const bool child_processes_inherit = false; local
1257 TCPSocket listen_socket(true, child_processes_inherit);

Completed in 146 milliseconds