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

  /frameworks/native/include/gui/
DisplayEventReceiver.h 55 struct VSync {
65 VSync vsync; member in union:android::DisplayEventReceiver::Event::__anon28617
73 * SurfaceFlinger. VSync events are disabled by default. Call setVSyncRate
116 * setVsyncRate() sets the Event::VSync delivery rate. A value of
117 * 1 returns every Event::VSync. A value of 2 returns every other event,
124 * requestNextVsync() schedules the next Event::VSync. It has no effect
125 * if the vsync rate is > 0.
  /hardware/qcom/display/msm8996/sdm/libs/core/
display_hdmi.h 52 virtual DisplayError VSync(int64_t timestamp);
display_primary.h 57 virtual DisplayError VSync(int64_t timestamp);
hw_interface.h 55 virtual DisplayError VSync(int64_t timestamp) = 0;
display_primary.cpp 149 // Set vsync enable state to false, as driver disables vsync during display power off.
247 DisplayError DisplayPrimary::VSync(int64_t timestamp) {
249 DisplayEventVSync vsync; local
250 vsync.timestamp = timestamp;
251 event_handler_->VSync(vsync);
display_hdmi.cpp 304 DisplayError DisplayHDMI::VSync(int64_t timestamp) {
306 DisplayEventVSync vsync; local
307 vsync.timestamp = timestamp;
308 event_handler_->VSync(vsync);
  /hardware/qcom/display/msmcobalt/sdm/libs/core/
display_hdmi.h 51 virtual DisplayError VSync(int64_t timestamp);
display_primary.h 56 virtual DisplayError VSync(int64_t timestamp);
hw_interface.h 57 virtual DisplayError VSync(int64_t timestamp) = 0;
display_primary.cpp 144 // Set vsync enable state to false, as driver disables vsync during display power off.
242 DisplayError DisplayPrimary::VSync(int64_t timestamp) {
244 DisplayEventVSync vsync; local
245 vsync.timestamp = timestamp;
246 event_handler_->VSync(vsync);
display_hdmi.cpp 297 DisplayError DisplayHDMI::VSync(int64_t timestamp) {
299 DisplayEventVSync vsync; local
300 vsync.timestamp = timestamp;
301 event_handler_->VSync(vsync);
  /hardware/qcom/display/msm8996/sdm/include/core/
display_interface.h 65 //!< receive VSync events in this state. This is default state as well.
75 kStateStandby, //!< Display is OFF. Client will continue to receive VSync events in this state
76 //!< if VSync is enabled. Contents are not rendered in this state.
142 uint32_t vsync_period_ns = 0; //!< VSync period in nanoseconds.
146 /*! @brief Event data associated with VSync event.
148 @sa DisplayEventHandler::VSync
189 /*! @brief Event handler for VSync event.
194 @param[in] vsync \link DisplayEventVSync \endlink
201 virtual DisplayError VSync(const DisplayEventVSync &vsync) = 0
    [all...]
  /hardware/qcom/display/msmcobalt/sdm/include/core/
display_interface.h 65 //!< receive VSync events in this state. This is default state as well.
75 kStateStandby, //!< Display is OFF. Client will continue to receive VSync events in this state
76 //!< if VSync is enabled. Contents are not rendered in this state.
156 uint32_t vsync_period_ns = 0; //!< VSync period in nanoseconds.
160 /*! @brief Event data associated with VSync event.
162 @sa DisplayEventHandler::VSync
203 /*! @brief Event handler for VSync event.
208 @param[in] vsync \link DisplayEventVSync \endlink
215 virtual DisplayError VSync(const DisplayEventVSync &vsync) = 0
    [all...]
  /hardware/qcom/display/msm8996/sdm/libs/core/fb/
hw_events.cpp 229 if (!strncmp(data, "VSYNC=", strlen("VSYNC="))) {
230 timestamp = strtoll(data + strlen("VSYNC="), NULL, 0);
233 event_handler_->VSync(timestamp);
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
hwc_display.h 131 virtual DisplayError VSync(const DisplayEventVSync &vsync);
hwc_session.cpp 85 static void VSync(const struct hwc_procs* procs, int disp, int64_t timestamp) {
94 hwc_procs_default_.vsync = VSync;
    [all...]
hwc_display.cpp 281 DisplayError HWCDisplay::VSync(const DisplayEventVSync &vsync) {
288 hwc_procs->vsync(hwc_procs, id_, vsync.timestamp);
    [all...]
  /hardware/qcom/display/msmcobalt/sdm/libs/core/fb/
hw_events.cpp 229 if (!strncmp(data, "VSYNC=", strlen("VSYNC="))) {
230 timestamp = strtoll(data + strlen("VSYNC="), NULL, 0);
233 event_handler_->VSync(timestamp);
  /hardware/qcom/display/msmcobalt/sdm/libs/hwc/
hwc_display.h 144 virtual DisplayError VSync(const DisplayEventVSync &vsync);
hwc_session.cpp 85 static void VSync(const struct hwc_procs* procs, int disp, int64_t timestamp) {
94 hwc_procs_default_.vsync = VSync;
    [all...]
hwc_display.cpp 283 DisplayError HWCDisplay::VSync(const DisplayEventVSync &vsync) {
290 hwc_procs->vsync(hwc_procs, id_, vsync.timestamp);
    [all...]
  /hardware/qcom/display/msm8996/sdm/libs/hwc2/
hwc_display.h 171 virtual HWC2::Error SetVsyncEnabled(HWC2::Vsync enabled);
196 virtual DisplayError VSync(const DisplayEventVSync &vsync);
hwc_display.cpp 460 HWC2::Error HWCDisplay::SetVsyncEnabled(HWC2::Vsync enabled) {
469 if (enabled == HWC2::Vsync::Enable)
471 else if (enabled == HWC2::Vsync::Disable)
699 DisplayError HWCDisplay::VSync(const DisplayEventVSync &vsync) {
700 callbacks_->Vsync(id_, vsync.timestamp);
    [all...]
  /hardware/qcom/display/msmcobalt/sdm/libs/hwc2/
hwc_display.h 175 virtual HWC2::Error SetVsyncEnabled(HWC2::Vsync enabled);
200 virtual DisplayError VSync(const DisplayEventVSync &vsync);
hwc_display.cpp 460 HWC2::Error HWCDisplay::SetVsyncEnabled(HWC2::Vsync enabled) {
469 if (enabled == HWC2::Vsync::Enable)
471 else if (enabled == HWC2::Vsync::Disable)
699 DisplayError HWCDisplay::VSync(const DisplayEventVSync &vsync) {
700 callbacks_->Vsync(id_, vsync.timestamp);
    [all...]

Completed in 320 milliseconds