Searched refs:DomainSocket (Results 1 – 9 of 9) sorted by relevance
/external/llvm-project/lldb/source/Host/posix/ |
D | DomainSocket.cpp | 61 DomainSocket::DomainSocket(bool should_close, bool child_processes_inherit) in DomainSocket() function in DomainSocket 64 DomainSocket::DomainSocket(SocketProtocol protocol, in DomainSocket() function in DomainSocket 68 DomainSocket::DomainSocket(NativeSocket socket, in DomainSocket() function in DomainSocket 69 const DomainSocket &listen_socket) in DomainSocket() 75 Status DomainSocket::Connect(llvm::StringRef name) { in Connect() 92 Status DomainSocket::Listen(llvm::StringRef name, int backlog) { in Listen() 113 Status DomainSocket::Accept(Socket *&socket) { in Accept() 118 socket = new DomainSocket(conn_fd, *this); in Accept() 123 size_t DomainSocket::GetNameOffset() const { return 0; } in GetNameOffset() 125 void DomainSocket::DeleteSocketFile(llvm::StringRef name) { in DeleteSocketFile() [all …]
|
/external/llvm-project/lldb/include/lldb/Host/posix/ |
D | DomainSocket.h | 15 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);
|
/external/llvm-project/lldb/unittests/Host/ |
D | SocketTestUtilities.cpp | 86 llvm::StringRef path, std::unique_ptr<DomainSocket> *socket_a_up, in CreateDomainConnectedSockets() 87 std::unique_ptr<DomainSocket> *socket_b_up) { in CreateDomainConnectedSockets() 88 return CreateConnectedSockets<DomainSocket>( in CreateDomainConnectedSockets() 89 path, [=](const DomainSocket &) { return path.str(); }, socket_a_up, in CreateDomainConnectedSockets() argument
|
D | SocketTestUtilities.h | 39 std::unique_ptr<DomainSocket> *a_up, 40 std::unique_ptr<DomainSocket> *b_up);
|
D | SocketTest.cpp | 111 std::unique_ptr<DomainSocket> socket_a_up; in TEST_P() 112 std::unique_ptr<DomainSocket> socket_b_up; in TEST_P() 216 std::unique_ptr<DomainSocket> socket_a_up; in TEST_P() 217 std::unique_ptr<DomainSocket> socket_b_up; in TEST_P()
|
/external/llvm-project/lldb/source/Host/linux/ |
D | AbstractSocket.cpp | 17 : DomainSocket(ProtocolUnixAbstract, child_processes_inherit) {} in AbstractSocket()
|
/external/llvm-project/lldb/include/lldb/Host/linux/ |
D | AbstractSocket.h | 15 class AbstractSocket : public DomainSocket {
|
/external/llvm-project/lldb/source/Host/ |
D | CMakeLists.txt | 75 posix/DomainSocket.cpp
|
/external/llvm-project/lldb/source/Host/common/ |
D | Socket.cpp | 127 std::make_unique<DomainSocket>(true, child_processes_inherit); in Create()
|