Lines Matching refs:EventThreadConnection
64 std::string toString(const EventThreadConnection& connection) { in toString()
109 EventThreadConnection::EventThreadConnection(EventThread* eventThread, in EventThreadConnection() function in android::EventThreadConnection
115 EventThreadConnection::~EventThreadConnection() { in ~EventThreadConnection()
120 void EventThreadConnection::onFirstRef() { in onFirstRef()
125 status_t EventThreadConnection::stealReceiveChannel(gui::BitTube* outChannel) { in stealReceiveChannel()
130 status_t EventThreadConnection::setVsyncRate(uint32_t rate) { in setVsyncRate()
135 void EventThreadConnection::requestNextVsync() { in requestNextVsync()
140 status_t EventThreadConnection::postEvent(const DisplayEventReceiver::Event& event) { in postEvent()
206 sp<EventThreadConnection> EventThread::createEventConnection(ResyncCallback resyncCallback) const { in createEventConnection()
207 return new EventThreadConnection(const_cast<EventThread*>(this), std::move(resyncCallback)); in createEventConnection()
210 status_t EventThread::registerDisplayEventConnection(const sp<EventThreadConnection>& connection) { in registerDisplayEventConnection()
227 void EventThread::removeDisplayEventConnectionLocked(const wp<EventThreadConnection>& connection) { in removeDisplayEventConnectionLocked()
235 void EventThread::setVsyncRate(uint32_t rate, const sp<EventThreadConnection>& connection) { in setVsyncRate()
249 void EventThread::requestNextVsync(const sp<EventThreadConnection>& connection) { in requestNextVsync()
398 const sp<EventThreadConnection>& connection) const { in shouldConsumeEvent()