• Home
  • Raw
  • Download

Lines Matching refs:EventThread

41     EventThread *ev = (EventThread *)val.sival_ptr;  in vsyncOffCallback()
46 EventThread::EventThread(const sp<VSyncSource>& src, SurfaceFlinger& flinger, bool interceptVSyncs) in EventThread() function in android::EventThread
69 void EventThread::sendVsyncHintOff() { in sendVsyncHintOff()
75 void EventThread::setPhaseOffset(nsecs_t phaseOffset) { in setPhaseOffset()
80 void EventThread::sendVsyncHintOnLocked() { in sendVsyncHintOnLocked()
93 void EventThread::onFirstRef() { in onFirstRef()
97 sp<EventThread::Connection> EventThread::createEventConnection() const { in createEventConnection()
98 return new Connection(const_cast<EventThread*>(this)); in createEventConnection()
101 status_t EventThread::registerDisplayEventConnection( in registerDisplayEventConnection()
102 const sp<EventThread::Connection>& connection) { in registerDisplayEventConnection()
109 void EventThread::removeDisplayEventConnection( in removeDisplayEventConnection()
110 const wp<EventThread::Connection>& connection) { in removeDisplayEventConnection()
115 void EventThread::setVsyncRate(uint32_t count, in setVsyncRate()
116 const sp<EventThread::Connection>& connection) { in setVsyncRate()
127 void EventThread::requestNextVsync( in requestNextVsync()
128 const sp<EventThread::Connection>& connection) { in requestNextVsync()
139 void EventThread::onScreenReleased() { in onScreenReleased()
148 void EventThread::onScreenAcquired() { in onScreenAcquired()
157 void EventThread::onVSyncEvent(nsecs_t timestamp) { in onVSyncEvent()
166 void EventThread::onHotplugReceived(int type, bool connected) { in onHotplugReceived()
182 bool EventThread::threadLoop() { in threadLoop()
184 Vector< sp<EventThread::Connection> > signalConnections; in threadLoop()
213 Vector< sp<EventThread::Connection> > EventThread::waitForEvent( in waitForEvent()
217 Vector< sp<EventThread::Connection> > signalConnections; in waitForEvent()
349 void EventThread::enableVSyncLocked() { in enableVSyncLocked()
362 void EventThread::disableVSyncLocked() { in disableVSyncLocked()
370 void EventThread::dump(String8& result) const { in dump()
389 EventThread::Connection::Connection( in Connection()
390 const sp<EventThread>& eventThread) in Connection()
395 EventThread::Connection::~Connection() { in ~Connection()
400 void EventThread::Connection::onFirstRef() { in onFirstRef()
405 status_t EventThread::Connection::stealReceiveChannel(gui::BitTube* outChannel) { in stealReceiveChannel()
410 status_t EventThread::Connection::setVsyncRate(uint32_t count) { in setVsyncRate()
415 void EventThread::Connection::requestNextVsync() { in requestNextVsync()
419 status_t EventThread::Connection::postEvent( in postEvent()