HomeSort by relevance Sort by last modified time
    Searched refs:Vsync (Results 1 - 14 of 14) sorted by null

  /frameworks/base/libs/hwui/
FrameInfo.h 35 Vsync,
73 set(FrameInfoIndex::Vsync) = vsyncTime;
75 // Pretend the other fields are all at vsync, too, so that naive
JankTracker.cpp 34 "Missed Vsync",
47 {FrameInfoIndex::IntendedVsync, FrameInfoIndex::Vsync},
48 {FrameInfoIndex::OldestInputEvent, FrameInfoIndex::Vsync},
49 {FrameInfoIndex::Vsync, FrameInfoIndex::SyncStart},
  /frameworks/base/libs/hwui/renderthread/
DrawFrameTask.cpp 116 int64_t vsync = mFrameInfo[static_cast<int>(FrameInfoIndex::Vsync)]; local
117 mRenderThread->timeLord().vsyncReceived(vsync);
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.h 138 void setVsyncEnabled(int32_t disp, HWC2::Vsync enabled);
175 void vsync(const std::shared_ptr<HWC2::Display>& display,
198 HWC2::Vsync vsyncEnabled;
HWComposer.cpp 101 auto vsyncHook = std::bind(&HWComposer::vsync, this,
205 void HWComposer::vsync(const std::shared_ptr<HWC2::Display>& display, function in class:android::HWComposer
210 ALOGE("vsync: Failed to determine type of display %" PRIu64,
216 ALOGE("Virtual display %" PRIu64 " passed to vsync callback",
222 ALOGE("Unknown physical display %" PRIu64 " passed to vsync callback",
231 // There have been reports of HWCs that signal several vsync events
236 ALOGW("Ignoring duplicate VSYNC event from HWC (t=%" PRId64 ")",
362 void HWComposer::setVsyncEnabled(int32_t disp, HWC2::Vsync enabled) {
387 ATRACE_INT(tag, enabled == HWC2::Vsync::Enable ? 1 : 0);
389 ALOGE("setVsyncEnabled: Failed to set vsync to %s on %d/%" PRIu6
    [all...]
HWC2On1Adapter.cpp 98 vsync = &vsyncHook;
461 case Callback::Vsync: return true;
493 } else if (descriptor == Callback::Vsync) {
534 auto vsync = reinterpret_cast<HWC2_PFN_VSYNC>(pointer); local
536 vsync(callbackData, pendingVsync.first, pendingVsync.second);
568 mVsyncEnabled(Vsync::Invalid),
2588 auto vsync = reinterpret_cast<HWC2_PFN_VSYNC>(callbackInfo.pointer); local
    [all...]
HWC2On1Adapter.h 221 HWC2::Error setVsyncEnabled(HWC2::Vsync enabled);
386 HWC2::Vsync mVsyncEnabled;
444 auto enabled = static_cast<HWC2::Vsync>(intEnabled);
HWC2.cpp 69 ALOGE("Vsync callback called with unknown display %" PRIu64,
164 error = display->setVsyncEnabled(HWC2::Vsync::Disable);
166 ALOGE("~Device: Failed to disable vsync for display %" PRIu64
236 void Device::registerVsyncCallback(VsyncCallback vsync)
238 mVsync = vsync;
420 registerCallback<HWC2_PFN_VSYNC>(Callback::Vsync, vsync_hook);
823 Error Display::setVsyncEnabled(Vsync enabled)
    [all...]
HWC2.h 80 void registerVsyncCallback(VsyncCallback vsync);
315 [[clang::warn_unused_result]] Error setVsyncEnabled(Vsync enabled);
  /device/google/contexthub/util/nanotool/
contexthub.h 70 Vsync,
sensorevent.cpp 77 case SensorType::Vsync:
contexthub.cpp 71 { SensorType::Vsync, "vsync" },
  /hardware/libhardware/include/hardware/
hwcomposer2.h 42 /* Vsync period in nanoseconds */
274 /* Vsync values passed to setVsyncEnabled */
278 /* Enable vsync */
281 /* Disable vsync */
319 case HWC2_CALLBACK_VSYNC: return "Vsync";
485 static inline const char* getVsyncName(hwc2_vsync_t vsync) {
486 switch (vsync) {
536 Vsync = HWC2_CALLBACK_VSYNC,
664 enum class Vsync : int32_t {
669 TO_STRING(hwc2_vsync_t, Vsync, getVsyncName
    [all...]
  /frameworks/native/services/surfaceflinger/
SurfaceFlinger.cpp 95 // This is the phase offset in nanoseconds of the software vsync event
96 // relative to the vsync event reported by HWComposer. The software vsync
102 // image is displayed. This value may be either positive (after the HW vsync)
103 // or negative (before the HW vsync). Setting it to 0 will result in a
104 // minimum latency of two vsync periods because the app and SurfaceFlinger
105 // will run just after the HW vsync. Setting it to a positive number will
112 // the latency will end up being an additional vsync period, and animations
340 mVsyncEventLabel(String8::format("VSYNC-%s", name)),
356 ALOGE("error registering vsync callback: %s (%d)"
    [all...]

Completed in 321 milliseconds