HomeSort by relevance Sort by last modified time
    Searched defs:vsync (Results 1 - 25 of 33) sorted by null

1 2

  /system/core/adf/libadfhwc/include/adfhwc/
adfhwc.h 31 * Called on vsync (required)
33 void (*vsync)(void *data, int disp, uint64_t timestamp); member in struct:adf_hwc_event_callbacks
  /frameworks/native/include/gui/
DisplayEventReceiver.h 55 struct VSync {
65 VSync vsync; member in union:android::DisplayEventReceiver::Event::__anon39687
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/msm8960/libhwcomposer/
hwc_uevents.cpp 56 int vsync = 0; local
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_uevents.cpp 57 int vsync = 0; local
  /system/core/adf/libadfhwc/
adfhwc.cpp 178 adf_vsync_event *vsync; local
184 vsync = static_cast<adf_vsync_event *>(vsync_temp);
187 dev->event_cb->vsync(dev->event_cb_data, disp, vsync->timestamp);
  /hardware/intel/img/hwcomposer/common/base/
Hwcomposer.cpp 321 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);
  /external/chromium_org/third_party/hwcplus/include/hardware/
hwcomposer.h 389 * (*vsync)() is called by the h/w composer HAL when a vsync event is
393 * the "disp" parameter indicates which display the vsync event is for.
395 * nanosecond of when the vsync event happened.
397 * vsync() is GUARANTEED TO NOT CALL BACK into the h/w composer HAL.
399 * It is expected that vsync() is called from a thread of at least
405 * can either stop or continue to process VSYNC events, but must not
408 void (*vsync)(const struct hwc_procs* procs, int disp, int64_t timestamp); member in struct:hwc_procs
  /external/chromium_org/third_party/webrtc/voice_engine/test/cmd_test/
voe_cmd_test.cc 63 VoEVideoSync* vsync = NULL; variable
136 vsync = VoEVideoSync::GetInterface(m_voe);
206 if (vsync)
207 vsync->Release();
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
xf86vmode.h 142 SDL_NAME(XF86VidModeSyncRange)* vsync; member in struct:__anon34140
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.cpp 140 mCBContext->procs.vsync = &hook_vsync;
149 // don't need a vsync thread if we have a hardware composer
151 // always turn vsync off when we start
190 // we don't have VSYNC support, we need to fake it
267 ctx->hwc->vsync(disp, timestamp);
281 void HWComposer::vsync(int disp, int64_t timestamp) { function in class:android::HWComposer
286 // There have been reports of HWCs that signal several vsync events
291 ALOGW("Ignoring duplicate VSYNC event from HWC (t=%" PRId64 ")",
    [all...]
  /hardware/libhardware/include/hardware/
hwcomposer.h 441 * (*vsync)() is called by the h/w composer HAL when a vsync event is
445 * the "disp" parameter indicates which display the vsync event is for.
447 * nanosecond of when the vsync event happened.
449 * vsync() is GUARANTEED TO NOT CALL BACK into the h/w composer HAL.
451 * It is expected that vsync() is called from a thread of at least
457 * can either stop or continue to process VSYNC events, but must not
460 void (*vsync)(const struct hwc_procs* procs, int disp, int64_t timestamp); member in struct:hwc_procs
    [all...]
  /external/chromium_org/content/browser/media/capture/
video_capture_oracle_unittest.cc 26 void SteadyStateSampleAndAdvance(base::TimeDelta vsync,
34 *t += vsync;
38 void SteadyStateNoSampleAndAdvance(base::TimeDelta vsync,
44 *t += vsync;
89 const base::TimeDelta vsync = base::TimeDelta::FromSeconds(1) / 60; local
97 // Steady state, we should capture every other vsync, indefinitely.
100 SteadyStateSampleAndAdvance(vsync, &sampler, &t);
101 SteadyStateNoSampleAndAdvance(vsync, &sampler, &t);
111 t += vsync;
119 SteadyStateSampleAndAdvance(vsync, &sampler, &t)
128 const base::TimeDelta vsync = base::TimeDelta::FromSeconds(1) \/ 50; local
173 const base::TimeDelta vsync = base::TimeDelta::FromSeconds(1) \/ 75; local
222 const base::TimeDelta vsync = base::TimeDelta::FromSeconds(1) \/ 30; local
257 const base::TimeDelta vsync = base::TimeDelta::FromSeconds(1) \/ 24; local
    [all...]
  /device/generic/goldfish/camera/
EmulatedFakeCamera2.cpp 917 bool vsync = mParent->mSensor->waitForVSync(kWaitPerLoop); local
918 if (!vsync) return true;
    [all...]
  /hardware/ti/omap4xxx/hwc/
hwc.c 1800 int vsync; local
    [all...]
  /hardware/ti/omap4-aah/hwc/
hwc.c 211 /* fake vsync event state */
566 if (hwc_dev->procs && hwc_dev->procs->vsync)
567 hwc_dev->procs->vsync(hwc_dev->procs, 0, timestamp);
2427 int vsync; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
videodev2.h 671 __u32 vsync; member in struct:v4l2_bt_timings
700 #define V4L2_DV_BT_BLANKING_HEIGHT(bt) (bt->vfrontporch + bt->vsync + bt->vbackporch + bt->il_vfrontporch + bt->il_vsync + bt->il_vbackporch)
1250 struct v4l2_event_vsync vsync; member in union:v4l2_event::__anon914
    [all...]
  /development/ndk/platforms/android-L/include/linux/
videodev2.h 669 __u32 vsync; member in struct:v4l2_bt_timings
1242 struct v4l2_event_vsync vsync; member in union:v4l2_event::__anon2489
    [all...]
  /device/asus/fugu/kernel-headers/linux/
psb_drm.h 695 } vsync; member in struct:drm_psb_vsync_set_arg
759 } vsync; member in struct:drm_psb_register_rw_arg
    [all...]
  /device/asus/fugu/original-kernel-headers/linux/
psb_drm.h 684 /*vsync operation*/
750 } vsync; member in struct:drm_psb_vsync_set_arg
809 } vsync; member in struct:drm_psb_register_rw_arg
970 /* VSYNC IOCTLS */
    [all...]
  /external/kernel-headers/original/uapi/linux/
videodev2.h 1011 __u32 vsync; member in struct:v4l2_bt_timings
1770 struct v4l2_event_vsync vsync; member in union:v4l2_event::__anon28100
    [all...]
  /hardware/qcom/msm8x84/kernel-headers/linux/
videodev2.h 711 __u32 vsync; member in struct:v4l2_bt_timings
1305 struct v4l2_event_vsync vsync; member in union:v4l2_event::__anon42341
    [all...]
  /hardware/qcom/msm8x84/original-kernel-headers/linux/
videodev2.h 1046 __u32 vsync; member in struct:v4l2_bt_timings
1819 struct v4l2_event_vsync vsync; member in union:v4l2_event::__anon42438
    [all...]
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
videodev2.h 671 __u32 vsync; member in struct:v4l2_bt_timings
700 #define V4L2_DV_BT_BLANKING_HEIGHT(bt) (bt->vfrontporch + bt->vsync + bt->vbackporch + bt->il_vfrontporch + bt->il_vsync + bt->il_vbackporch)
1250 struct v4l2_event_vsync vsync; member in union:v4l2_event::__anon76569
    [all...]
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
videodev2.h 671 __u32 vsync; member in struct:v4l2_bt_timings
700 #define V4L2_DV_BT_BLANKING_HEIGHT(bt) (bt->vfrontporch + bt->vsync + bt->vbackporch + bt->il_vfrontporch + bt->il_vsync + bt->il_vbackporch)
1250 struct v4l2_event_vsync vsync; member in union:v4l2_event::__anon77336
    [all...]
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
videodev2.h 671 __u32 vsync; member in struct:v4l2_bt_timings
700 #define V4L2_DV_BT_BLANKING_HEIGHT(bt) (bt->vfrontporch + bt->vsync + bt->vbackporch + bt->il_vfrontporch + bt->il_vsync + bt->il_vbackporch)
1250 struct v4l2_event_vsync vsync; member in union:v4l2_event::__anon78115
    [all...]

Completed in 1956 milliseconds

1 2