Searched defs:vsync (Results 1 - 25 of 34) sorted by relevance

12

/hardware/intel/img/hwcomposer/merrifield/common/base/
H A DHwcomposer.cpp329 void Hwcomposer::vsync(int disp, int64_t timestamp) function in class:android::intel::Hwcomposer
333 if (mProcs && mProcs->vsync) {
334 VTRACE("report vsync on disp %d, timestamp %llu", disp, timestamp);
335 // workaround to pretend vsync is from primary display
336 // Display will freeze if vsync is from external display.
337 mProcs->vsync(const_cast<hwc_procs_t*>(mProcs), IDisplayDevice::DEVICE_PRIMARY, timestamp);
/hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/
H A DHwcomposer.cpp321 void Hwcomposer::vsync(int disp, int64_t timestamp) function in class:android::intel::Hwcomposer
325 if (mProcs && mProcs->vsync) {
326 VLOGTRACE("report vsync on disp %d, timestamp %llu", disp, timestamp);
327 // workaround to pretend vsync is from primary display
328 // Display will freeze if vsync is from external display.
329 mProcs->vsync(const_cast<hwc_procs_t*>(mProcs), IDisplayDevice::DEVICE_PRIMARY, timestamp);
/hardware/qcom/display/msm8909/sdm/libs/core/
H A Ddisplay_hdmi.cpp294 DisplayEventVSync vsync; local
295 vsync.timestamp = timestamp;
296 event_handler_->VSync(vsync);
H A Ddisplay_primary.cpp150 // Set vsync enable state to false, as driver disables vsync during display power off.
261 DisplayEventVSync vsync; local
262 vsync.timestamp = timestamp;
263 event_handler_->VSync(vsync);
/hardware/qcom/display/msm8909w_3100/sdm/libs/core/
H A Ddisplay_hdmi.cpp294 DisplayEventVSync vsync; local
295 vsync.timestamp = timestamp;
296 event_handler_->VSync(vsync);
H A Ddisplay_primary.cpp150 // Set vsync enable state to false, as driver disables vsync during display power off.
261 DisplayEventVSync vsync; local
262 vsync.timestamp = timestamp;
263 event_handler_->VSync(vsync);
/hardware/qcom/display/msm8996/sdm/libs/core/
H A Ddisplay_hdmi.cpp305 DisplayEventVSync vsync; local
306 vsync.timestamp = timestamp;
307 event_handler_->VSync(vsync);
H A Ddisplay_primary.cpp149 // Set vsync enable state to false, as driver disables vsync during display power off.
249 DisplayEventVSync vsync; local
250 vsync.timestamp = timestamp;
251 event_handler_->VSync(vsync);
/hardware/qcom/display/msm8998/sdm/libs/core/
H A Ddisplay_hdmi.cpp297 DisplayEventVSync vsync; local
298 vsync.timestamp = timestamp;
299 event_handler_->VSync(vsync);
H A Ddisplay_primary.cpp175 // Set vsync enable state to false, as driver disables vsync during display power off.
286 DisplayEventVSync vsync; local
287 vsync.timestamp = timestamp;
288 event_handler_->VSync(vsync);
/hardware/interfaces/graphics/composer/2.1/utils/vts/
H A DComposerVts.cpp278 IComposerClient::Vsync vsync = local
280 Error error = mClient->setVsyncEnabled(display, vsync);
281 ASSERT_EQ(Error::NONE, error) << "failed to set vsync mode";
283 // give the hwbinder thread some time to handle any pending vsync callback
/hardware/libhardware/include/hardware/
H A Dhwcomposer.h426 * (*vsync)() is called by the h/w composer HAL when a vsync event is
430 * the "disp" parameter indicates which display the vsync event is for.
432 * nanosecond of when the vsync event happened.
434 * vsync() is GUARANTEED TO NOT CALL BACK into the h/w composer HAL.
436 * It is expected that vsync() is called from a thread of at least
445 void (*vsync)(const struct hwc_procs* procs, int disp, int64_t timestamp); member in struct:hwc_procs
H A Dhwcomposer2.h316 /* Enable vsync */
319 /* Disable vsync */
563 static inline const char* getVsyncName(hwc2_vsync_t vsync) { argument
564 switch (vsync) {
847 * properties (such as width, height, and vsync period), and other threads may
853 * and the vsync callback should not be called for a display until vsync has
882 /* vsync(..., display, timestamp)
886 * Notifies the client that a vsync event has occurred. This callback must
887 * only be triggered when vsync i
[all...]
/hardware/qcom/display/msm8996/sdm/libs/hwc/
H A Dhwc_display.cpp283 DisplayError HWCDisplay::VSync(const DisplayEventVSync &vsync) { argument
290 hwc_procs->vsync(hwc_procs, id_, vsync.timestamp);
/hardware/qcom/display/msm8909/sdm/libs/hwc/
H A Dhwc_display.cpp368 DisplayError HWCDisplay::VSync(const DisplayEventVSync &vsync) { argument
375 hwc_procs->vsync(hwc_procs, id_, vsync.timestamp);
/hardware/qcom/display/msm8909/sdm/libs/hwc2/
H A Dhwc_display.cpp940 DisplayError HWCDisplay::VSync(const DisplayEventVSync &vsync) { argument
941 callbacks_->Vsync(id_, vsync.timestamp);
/hardware/qcom/display/msm8909w_3100/sdm/libs/hwc/
H A Dhwc_display.cpp368 DisplayError HWCDisplay::VSync(const DisplayEventVSync &vsync) { argument
375 hwc_procs->vsync(hwc_procs, id_, vsync.timestamp);
/hardware/qcom/display/msm8909w_3100/sdm/libs/hwc2/
H A Dhwc_display.cpp890 DisplayError HWCDisplay::VSync(const DisplayEventVSync &vsync) { argument
891 callbacks_->Vsync(id_, vsync.timestamp);
/hardware/qcom/display/msm8996/sdm/libs/hwc2/
H A Dhwc_display.cpp684 DisplayError HWCDisplay::VSync(const DisplayEventVSync &vsync) { argument
685 callbacks_->Vsync(id_, vsync.timestamp);
/hardware/qcom/display/msm8998/sdm/libs/hwc2/
H A Dhwc_display.cpp902 DisplayError HWCDisplay::VSync(const DisplayEventVSync &vsync) { argument
903 callbacks_->Vsync(id_, vsync.timestamp);
/hardware/interfaces/graphics/composer/2.1/utils/hwc2on1adapter/
H A DHWC2On1Adapter.cpp61 vsync = &vsyncHook;
491 auto vsync = reinterpret_cast<HWC2_PFN_VSYNC>(pointer); local
493 vsync(callbackData, pendingVsync.first, pendingVsync.second);
964 ALOGE_IF(error != 0, "setVsyncEnabled: Failed to set vsync on HWC1 (%d)",
2580 auto vsync = reinterpret_cast<HWC2_PFN_VSYNC>(callbackInfo.pointer); local
2581 vsync(callbackInfo.data, displayId, timestamp);
/hardware/qcom/display/msm8994/libhwcomposer/
H A DHWC2On1Adapter.cpp98 vsync = &vsyncHook;
532 auto vsync = reinterpret_cast<HWC2_PFN_VSYNC>(pointer); local
534 vsync(callbackData, pendingVsync.first, pendingVsync.second);
1019 ALOGE_IF(error != 0, "setVsyncEnabled: Failed to set vsync on HWC1 (%d)",
2606 auto vsync = reinterpret_cast<HWC2_PFN_VSYNC>(callbackInfo.pointer); local
2607 vsync(callbackInfo.data, displayId, timestamp);
/hardware/qcom/msm8994/kernel-headers/linux/
H A Dvideodev2.h712 __u32 vsync; member in struct:v4l2_bt_timings
1307 struct v4l2_event_vsync vsync; member in union:v4l2_event::__anon4376
/hardware/qcom/msm8994/original-kernel-headers/linux/
H A Dvideodev2.h1017 * @vsync: Vertical Sync length in lines
1034 * tot_height = height + vfrontporch + vsync + vbackporch +
1049 __u32 vsync; member in struct:v4l2_bt_timings
1823 struct v4l2_event_vsync vsync; member in union:v4l2_event::__anon4483
/hardware/qcom/msm8996/kernel-headers/linux/
H A Dvideodev2.h756 __u32 vsync; member in struct:v4l2_bt_timings
785 #define V4L2_DV_BT_BLANKING_HEIGHT(bt) ((bt)->vfrontporch + (bt)->vsync + (bt)->vbackporch + (bt)->il_vfrontporch + (bt)->il_vsync + (bt)->il_vbackporch)
1441 struct v4l2_event_vsync vsync; member in union:v4l2_event::__anon4624

Completed in 752 milliseconds

12