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

1 2

  /hardware/qcom/display/msm8996/sdm/libs/hwc2/
hwc_callbacks.h 45 void Vsync(hwc2_display_t display, int64_t timestamp);
hwc_callbacks.cpp 49 void HWCCallbacks::Vsync(hwc2_display_t display, int64_t timestamp) {
66 case HWC2::Callback::Vsync:
  /hardware/qcom/display/msm8998/sdm/libs/hwc2/
hwc_callbacks.cpp 49 void HWCCallbacks::Vsync(hwc2_display_t display, int64_t timestamp) {
67 case HWC2::Callback::Vsync:
hwc_callbacks.h 45 void Vsync(hwc2_display_t display, int64_t timestamp);
  /hardware/qcom/display/sdm845/sdm/libs/hwc2/
hwc_callbacks.cpp 49 void HWCCallbacks::Vsync(hwc2_display_t display, int64_t timestamp) {
66 case HWC2::Callback::Vsync:
hwc_callbacks.h 45 void Vsync(hwc2_display_t display, int64_t timestamp);
  /frameworks/base/libs/hwui/
JankTracker.cpp 43 {FrameInfoIndex::IntendedVsync, FrameInfoIndex::Vsync},
44 {FrameInfoIndex::OldestInputEvent, FrameInfoIndex::Vsync},
45 {FrameInfoIndex::Vsync, FrameInfoIndex::SyncStart},
80 // SF will begin composition at VSYNC-app + offsetDelta. If we are triple
82 // return due to the staggering of VSYNC-app & VSYNC-sf.
118 mDequeueTimeForgiveness + frame[FrameInfoIndex::Vsync]
FrameInfo.h 35 Vsync,
77 set(FrameInfoIndex::Vsync) = vsyncTime;
79 // Pretend the other fields are all at vsync, too, so that naive
  /frameworks/native/services/vr/hardware_composer/impl/
vr_hwc.h 89 IComposerClient::Vsync vsync_enabled;
157 IComposerClient::Vsync vsync_enabled() const { return vsync_enabled_; }
158 void set_vsync_enabled(IComposerClient::Vsync vsync) {
159 vsync_enabled_ = vsync;
186 IComposerClient::Vsync vsync_enabled_;
240 Error setVsyncEnabled(Display display, IComposerClient::Vsync enabled) override;
vr_composer_client.h 73 Return<Error> setVsyncEnabled(Display display, Vsync enabled) override;
  /frameworks/native/libs/vr/libvrflinger/
hwc_types.h 263 struct Vsync final : public Wrapper<HWC2::Vsync> {
270 Vsync() : Base(Invalid) {}
  /hardware/interfaces/graphics/composer/2.1/vts/functional/
VtsHalGraphicsComposerTestUtils.cpp 296 IComposerClient::Vsync vsync = (enabled) ? IComposerClient::Vsync::ENABLE local
297 : IComposerClient::Vsync::DISABLE;
298 Error error = mClient->setVsyncEnabled(display, vsync);
299 ASSERT_EQ(Error::NONE, error) << "failed to set vsync mode";
301 // give the hwbinder thread some time to handle any pending vsync callback
  /frameworks/base/libs/hwui/renderthread/
DrawFrameTask.cpp 118 int64_t vsync = mFrameInfo[static_cast<int>(FrameInfoIndex::Vsync)]; local
119 mRenderThread->timeLord().vsyncReceived(vsync);
  /hardware/interfaces/graphics/composer/2.1/
IComposerClient.hal 31 /** Vsync period in nanoseconds */
107 /** Vsync values passed to setVsyncEnabled. */
108 enum Vsync : int32_t {
111 /** Enable vsync. */
114 /** Disable vsync. */
557 * Enables or disables the vsync signal for the given display. Virtual
558 * displays never generate vsync callbacks, and any attempt to enable
559 * vsync for a virtual display though this function must succeed and have
562 * @param display is the display to which the vsync mode is set.
563 * @param enabled indicates whether to enable or disable vsync
    [all...]
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.h 145 void setVsyncEnabled(int32_t displayId, HWC2::Vsync enabled);
194 HWC2::Vsync vsyncEnabled;
HWComposer.cpp 158 ALOGE("Virtual display %" PRIu64 " passed to vsync callback",
164 ALOGE("Unknown physical display %" PRIu64 " passed to vsync callback",
173 // There have been reports of HWCs that signal several vsync events
178 ALOGW("Ignoring duplicate VSYNC event from HWC (t=%" PRId64 ")",
368 void HWComposer::setVsyncEnabled(int32_t displayId, HWC2::Vsync enabled) {
394 ATRACE_INT(tag, enabled == HWC2::Vsync::Enable ? 1 : 0);
396 ALOGE("setVsyncEnabled: Failed to set vsync to %s on %d/%" PRIu64
654 setVsyncEnabled(displayId, HWC2::Vsync::Disable);
877 vsyncEnabled(HWC2::Vsync::Disable) {
  /device/google/contexthub/util/nanotool/
contexthub.h 70 Vsync,
sensorevent.cpp 78 case SensorType::Vsync:
  /frameworks/native/services/vr/hardware_composer/aidl/android/dvr/
parcelable_composer_frame.cpp 88 frame_.vsync_enabled = static_cast<IComposerClient::Vsync>(value);
  /hardware/libhardware/include/hardware/
hwcomposer2.h 44 /* Vsync period in nanoseconds */
303 /* Vsync values passed to setVsyncEnabled */
307 /* Enable vsync */
310 /* Disable vsync */
348 case HWC2_CALLBACK_VSYNC: return "Vsync";
518 static inline const char* getVsyncName(hwc2_vsync_t vsync) {
519 switch (vsync) {
569 Vsync = HWC2_CALLBACK_VSYNC,
700 enum class Vsync : int32_t {
705 TO_STRING(hwc2_vsync_t, Vsync, getVsyncName
    [all...]
  /frameworks/native/libs/hwc2on1adapter/
HWC2On1Adapter.cpp 61 vsync = &vsyncHook;
413 case Callback::Vsync: return true;
450 } else if (descriptor == Callback::Vsync) {
491 auto vsync = reinterpret_cast<HWC2_PFN_VSYNC>(pointer); local
493 vsync(callbackData, pendingVsync.first, pendingVsync.second);
523 mVsyncEnabled(Vsync::Invalid),
2578 auto vsync = reinterpret_cast<HWC2_PFN_VSYNC>(callbackInfo.pointer); local
    [all...]
  /hardware/interfaces/graphics/composer/2.1/default/
ComposerBase.h 73 IComposerClient::Vsync enabled) = 0;
ComposerClient.h 99 Return<Error> setVsyncEnabled(Display display, Vsync enabled) override;
  /hardware/qcom/display/msm8994/libhwcomposer/
HWC2On1Adapter.cpp 98 vsync = &vsyncHook;
459 case Callback::Vsync: return true;
491 } else if (descriptor == Callback::Vsync) {
532 auto vsync = reinterpret_cast<HWC2_PFN_VSYNC>(pointer); local
534 vsync(callbackData, pendingVsync.first, pendingVsync.second);
567 mVsyncEnabled(Vsync::Invalid),
2606 auto vsync = reinterpret_cast<HWC2_PFN_VSYNC>(callbackInfo.pointer); local
    [all...]
  /device/linaro/hikey/gralloc960/
Android.mk 67 # Vsync backend(not used)

Completed in 274 milliseconds

1 2