Lines Matching refs:HostImpl

56   std::unique_ptr<HostImpl> host(new HostImpl(socket_name, task_runner));  in CreateInstance()
65 std::unique_ptr<HostImpl> host( in CreateInstance()
66 new HostImpl(std::move(socket_fd), task_runner)); in CreateInstance()
72 HostImpl::HostImpl(base::ScopedSocketHandle socket_fd, in HostImpl() function in perfetto::ipc::HostImpl
80 HostImpl::HostImpl(const char* socket_name, base::TaskRunner* task_runner) in HostImpl() function in perfetto::ipc::HostImpl
90 HostImpl::~HostImpl() = default;
92 bool HostImpl::ExposeService(std::unique_ptr<Service> service) { in ExposeService()
105 void HostImpl::OnNewIncomingConnection( in OnNewIncomingConnection()
119 void HostImpl::OnDataAvailable(base::UnixSocket* sock) { in OnDataAvailable()
148 void HostImpl::OnReceivedFrame(ClientConnection* client, in OnReceivedFrame()
162 void HostImpl::OnBindService(ClientConnection* client, const Frame& req_frame) { in OnBindService()
183 void HostImpl::OnInvokeMethod(ClientConnection* client, in OnInvokeMethod()
208 base::WeakPtr<HostImpl> host_weak_ptr = weak_ptr_factory_.GetWeakPtr(); in OnInvokeMethod()
229 void HostImpl::ReplyToMethodInvocation(ClientID client_id, in ReplyToMethodInvocation()
254 void HostImpl::SendFrame(ClientConnection* client, const Frame& frame, int fd) { in SendFrame()
268 void HostImpl::OnDisconnect(base::UnixSocket* sock) { in OnDisconnect()
288 const HostImpl::ExposedService* HostImpl::GetServiceByName( in GetServiceByName()
300 HostImpl::ExposedService::ExposedService(ServiceID id_, in ExposedService()
305 HostImpl::ExposedService::ExposedService(ExposedService&&) noexcept = default;
306 HostImpl::ExposedService& HostImpl::ExposedService::operator=(
307 HostImpl::ExposedService&&) = default;
308 HostImpl::ExposedService::~ExposedService() = default;
310 HostImpl::ClientConnection::~ClientConnection() = default;