Home
last modified time | relevance | path

Searched refs:VsyncThread (Results 1 – 4 of 4) sorted by relevance

/device/generic/goldfish-opengl/system/hwc3/
DVsyncThread.h34 class VsyncThread {
36 VsyncThread(int64_t id);
37 virtual ~VsyncThread();
39 VsyncThread(const VsyncThread&) = delete;
40 VsyncThread& operator=(const VsyncThread&) = delete;
42 VsyncThread(VsyncThread&&) = delete;
43 VsyncThread& operator=(VsyncThread&&) = delete;
DVsyncThread.cpp43 VsyncThread::VsyncThread(int64_t displayId) : mDisplayId(displayId) { in VsyncThread() function in aidl::android::hardware::graphics::composer3::impl::VsyncThread
47 VsyncThread::~VsyncThread() { stop(); } in ~VsyncThread()
49 HWC3::Error VsyncThread::start(int32_t vsyncPeriodNanos) { in start()
77 HWC3::Error VsyncThread::stop() { in stop()
84 HWC3::Error VsyncThread::setCallbacks(const std::shared_ptr<IComposerCallback>& callback) { in setCallbacks()
94 HWC3::Error VsyncThread::setVsyncEnabled(bool enabled) { in setVsyncEnabled()
104 HWC3::Error VsyncThread::scheduleVsyncUpdate(int32_t newVsyncPeriod, in scheduleVsyncUpdate()
125 Nanoseconds VsyncThread::updateVsyncPeriodLocked(TimePoint now) { in updateVsyncPeriodLocked()
134 void VsyncThread::threadLoop() { in threadLoop()
DAndroid.bp91 "VsyncThread.cpp",
DDisplay.h167 VsyncThread mVsyncThread;