Searched refs:vsync (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/libs/hwui/renderthread/
H A DTimeLord.cpp27 bool TimeLord::vsyncReceived(nsecs_t vsync) { argument
28 if (vsync > mFrameTimeNanos) {
29 mFrameTimeNanos = vsync;
H A DTimeLord.h34 // returns true if the vsync is newer, false if it was rejected for staleness
35 bool vsyncReceived(nsecs_t vsync);
H A DDrawFrameTask.cpp119 int64_t vsync = mFrameInfo[static_cast<int>(FrameInfoIndex::Vsync)]; local
120 mRenderThread->timeLord().vsyncReceived(vsync);
H A DCanvasContext.cpp291 // the vsync was estimated due to being slow handling the signal.
295 // Already drew for this vsync pulse, UI draw request missed
630 nsecs_t vsync = mRenderThread.timeLord().computeFrameTimeNanos(); local
634 .setVsync(vsync, vsync);
/frameworks/native/services/surfaceflinger/tests/vsync/
H A DAndroid.mk5 vsync.cpp
14 LOCAL_MODULE:= test-vsync-events
H A Dvsync.cpp35 printf("event vsync: count=%d\t", buffer[i].vsync.count);
/frameworks/base/libs/hwui/tests/macrobench/
H A DTestSceneRunner.cpp96 nsecs_t vsync = systemTime(CLOCK_MONOTONIC); local
97 UiFrameInfoBuilder(proxy->frameInfo()).setVsync(vsync, vsync);
108 nsecs_t vsync = systemTime(CLOCK_MONOTONIC); local
111 UiFrameInfoBuilder(proxy->frameInfo()).setVsync(vsync, vsync);
118 avgMs.add((done - vsync) / 1000000.0);
/frameworks/native/include/gui/
H A DDisplayEventReceiver.h65 VSync vsync; member in union:android::DisplayEventReceiver::Event::__anon1375
125 * if the vsync rate is > 0.
/frameworks/native/services/surfaceflinger/
H A DEventThread.cpp59 mVSyncEvent[i].vsync.count = 0;
142 // disable reliance on h/w vsync
151 // resume use of h/w vsync
162 mVSyncEvent[0].vsync.count++;
211 // This will return when (1) a vsync event has been received, and (2) there was
228 // we have a vsync event to dispatch
231 vsyncCount = mVSyncEvent[i].vsync.count;
237 // no vsync event, see if there are some other event
253 // we need vsync events because at least
258 // (ie: we received a vsync even
[all...]
H A DAndroid.mk84 # - The phase offset between hardware vsync and when apps are woken up by the
86 # - The phase offset between hardware vsync and when SurfaceFlinger wakes up
/frameworks/base/libs/androidfw/
H A DDisplayEventDispatcher.cpp66 ALOGV("dispatcher %p ~ Scheduling vsync.", this);
79 ALOGW("Failed to request next vsync, status=%d", status);
101 // Drain all pending events, keep the last vsync.
126 // Later vsync events will just overwrite the info from earlier
131 *outCount = ev.vsync.count;
/frameworks/base/core/jni/
H A Dandroid_view_Surface.cpp529 nsecs_t vsync = systemTime(CLOCK_MONOTONIC); local
531 .setVsync(vsync, vsync)
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.h175 void vsync(const std::shared_ptr<HWC2::Display>& display,
H A DHWComposer_hwc1.h331 inline void vsync(int disp, int64_t timestamp);
H A DHWComposer_hwc1.cpp142 mCBContext->procs.vsync = &hook_vsync;
151 // don't need a vsync thread if we have a hardware composer
153 // always turn vsync off when we start
269 ctx->hwc->vsync(disp, timestamp);
283 void HWComposer::vsync(int disp, int64_t timestamp) { function in class:android::HWComposer
288 // There have been reports of HWCs that signal several vsync events
1304 // we missed, find where the next vsync should be
H A DHWC2.h81 void registerVsyncCallback(VsyncCallback vsync);
H A DHWComposer.cpp101 auto vsyncHook = std::bind(&HWComposer::vsync, this,
210 void HWComposer::vsync(const std::shared_ptr<HWC2::Display>& display, function in class:android::HWComposer
215 ALOGE("vsync: Failed to determine type of display %" PRIu64,
221 ALOGE("Virtual display %" PRIu64 " passed to vsync callback",
227 ALOGE("Unknown physical display %" PRIu64 " passed to vsync callback",
236 // There have been reports of HWCs that signal several vsync events
434 ALOGE("setVsyncEnabled: Failed to set vsync to %s on %d/%" PRIu64
H A DHWC2On1Adapter.cpp98 vsync = &vsyncHook;
532 auto vsync = reinterpret_cast<HWC2_PFN_VSYNC>(pointer); local
534 vsync(callbackData, pendingVsync.first, pendingVsync.second);
1018 ALOGE_IF(error != 0, "setVsyncEnabled: Failed to set vsync on HWC1 (%d)",
2605 auto vsync = reinterpret_cast<HWC2_PFN_VSYNC>(callbackInfo.pointer); local
2606 vsync(callbackInfo.data, displayId, timestamp);
H A DHWC2.cpp171 ALOGE("~Device: Failed to disable vsync for display %" PRIu64
245 void Device::registerVsyncCallback(VsyncCallback vsync) argument
247 mVsync = vsync;

Completed in 484 milliseconds