• Home
  • Raw
  • Download

Lines Matching refs:EventThreadConnection

82 std::string toString(const EventThreadConnection& connection) {  in toString()
164 EventThreadConnection::EventThreadConnection(EventThread* eventThread, uid_t callingUid, in EventThreadConnection() function in android::EventThreadConnection
173 EventThreadConnection::~EventThreadConnection() { in ~EventThreadConnection()
178 void EventThreadConnection::onFirstRef() { in onFirstRef()
180 mEventThread->registerDisplayEventConnection(sp<EventThreadConnection>::fromExisting(this)); in onFirstRef()
183 binder::Status EventThreadConnection::stealReceiveChannel(gui::BitTube* outChannel) { in stealReceiveChannel()
194 binder::Status EventThreadConnection::setVsyncRate(int rate) { in setVsyncRate()
196 sp<EventThreadConnection>::fromExisting(this)); in setVsyncRate()
200 binder::Status EventThreadConnection::requestNextVsync() { in requestNextVsync()
202 mEventThread->requestNextVsync(sp<EventThreadConnection>::fromExisting(this)); in requestNextVsync()
206 binder::Status EventThreadConnection::getLatestVsyncEventData( in getLatestVsyncEventData()
210 mEventThread->getLatestVsyncEventData(sp<EventThreadConnection>::fromExisting(this)); in getLatestVsyncEventData()
214 status_t EventThreadConnection::postEvent(const DisplayEventReceiver::Event& event) { in postEvent()
300 sp<EventThreadConnection> EventThread::createEventConnection( in createEventConnection()
302 return sp<EventThreadConnection>::make(const_cast<EventThread*>(this), in createEventConnection()
307 status_t EventThread::registerDisplayEventConnection(const sp<EventThreadConnection>& connection) { in registerDisplayEventConnection()
324 void EventThread::removeDisplayEventConnectionLocked(const wp<EventThreadConnection>& connection) { in removeDisplayEventConnectionLocked()
332 void EventThread::setVsyncRate(uint32_t rate, const sp<EventThreadConnection>& connection) { in setVsyncRate()
346 void EventThread::requestNextVsync(const sp<EventThreadConnection>& connection) { in requestNextVsync()
362 const sp<EventThreadConnection>& connection) const { in getLatestVsyncEventData()
528 const sp<EventThreadConnection>& connection) const { in shouldConsumeEvent()