Home
last modified time | relevance | path

Searched refs:DomainSocket (Results 1 – 4 of 4) sorted by relevance

/src/contrib/llvm-project/lldb/source/Host/posix/
H A DDomainSocket.cpp59 DomainSocket::DomainSocket(bool should_close, bool child_processes_inherit) in DomainSocket() function in DomainSocket
62 DomainSocket::DomainSocket(SocketProtocol protocol, in DomainSocket() function in DomainSocket
66 DomainSocket::DomainSocket(NativeSocket socket, in DomainSocket() function in DomainSocket
67 const DomainSocket &listen_socket) in DomainSocket()
73 Status DomainSocket::Connect(llvm::StringRef name) { in Connect()
90 Status DomainSocket::Listen(llvm::StringRef name, int backlog) { in Listen()
111 Status DomainSocket::Accept(Socket *&socket) { in Accept()
116 socket = new DomainSocket(conn_fd, *this); in Accept()
121 size_t DomainSocket::GetNameOffset() const { return 0; } in GetNameOffset()
123 void DomainSocket::DeleteSocketFile(llvm::StringRef name) { in DeleteSocketFile()
[all …]
/src/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DDomainSocket.h15 class DomainSocket : public Socket {
17 DomainSocket(bool should_close, bool child_processes_inherit);
26 DomainSocket(SocketProtocol protocol, bool child_processes_inherit);
33 DomainSocket(NativeSocket socket, const DomainSocket &listen_socket);
/src/contrib/llvm-project/lldb/source/Host/common/
H A DSocket.cpp124 std::make_unique<DomainSocket>(true, child_processes_inherit); in Create()
/src/lib/clang/liblldb/
H A DMakefile297 SRCS+= Host/posix/DomainSocket.cpp