Lines Matching refs:ClientConnection
64495 struct ClientConnection { struct in perfetto::ipc::HostImpl
64496 ~ClientConnection();
64517 void OnReceivedFrame(ClientConnection*, const Frame&);
64518 void OnBindService(ClientConnection*, const Frame&);
64519 void OnInvokeMethod(ClientConnection*, const Frame&);
64523 static void SendFrame(ClientConnection*, const Frame&, int fd = -1);
64528 std::map<ClientID, std::unique_ptr<ClientConnection>> clients_;
64529 std::map<base::UnixSocket*, ClientConnection*> clients_by_socket_;
64648 std::unique_ptr<ClientConnection> client(new ClientConnection()); in OnNewIncomingConnection()
64663 ClientConnection* client = it->second; in OnDataAvailable()
64687 void HostImpl::OnReceivedFrame(ClientConnection* client, in OnReceivedFrame()
64701 void HostImpl::OnBindService(ClientConnection* client, const Frame& req_frame) { in OnBindService()
64722 void HostImpl::OnInvokeMethod(ClientConnection* client, in OnInvokeMethod()
64775 ClientConnection* client = client_iter->second.get(); in ReplyToMethodInvocation()
64793 void HostImpl::SendFrame(ClientConnection* client, const Frame& frame, int fd) { in SendFrame()
64849 HostImpl::ClientConnection::~ClientConnection() = default;