Home
last modified time | relevance | path

Searched refs:ClientConnection (Results 1 – 2 of 2) sorted by relevance

/external/perfetto/src/ipc/
Dhost_impl.h56 struct ClientConnection { struct
57 ~ClientConnection();
78 void OnReceivedFrame(ClientConnection*, const Frame&); argument
79 void OnBindService(ClientConnection*, const Frame&);
80 void OnInvokeMethod(ClientConnection*, const Frame&);
84 static void SendFrame(ClientConnection*, const Frame&, int fd = -1);
89 std::map<ClientID, std::unique_ptr<ClientConnection>> clients_;
90 std::map<base::UnixSocket*, ClientConnection*> clients_by_socket_;
Dhost_impl.cc88 std::unique_ptr<ClientConnection> client(new ClientConnection()); in OnNewIncomingConnection()
101 ClientConnection* client = it->second; in OnDataAvailable()
125 void HostImpl::OnReceivedFrame(ClientConnection* client, in OnReceivedFrame()
140 void HostImpl::OnBindService(ClientConnection* client, const Frame& req_frame) { in OnBindService()
161 void HostImpl::OnInvokeMethod(ClientConnection* client, in OnInvokeMethod()
213 ClientConnection* client = client_iter->second.get(); in ReplyToMethodInvocation()
233 void HostImpl::SendFrame(ClientConnection* client, const Frame& frame, int fd) { in SendFrame()
286 HostImpl::ClientConnection::~ClientConnection() = default;