Lines Matching refs:hwc
53 static uint32_t hwcApiVersion(const hwc_composer_device_1_t* hwc) { in hwcApiVersion() argument
54 uint32_t hwcVersion = hwc->common.version; in hwcApiVersion()
58 static uint32_t hwcHeaderVersion(const hwc_composer_device_1_t* hwc) { in hwcHeaderVersion() argument
59 uint32_t hwcVersion = hwc->common.version; in hwcHeaderVersion()
63 static bool hwcHasApiVersion(const hwc_composer_device_1_t* hwc, in hwcHasApiVersion() argument
65 return hwcApiVersion(hwc) >= (version & HARDWARE_API_VERSION_2_MAJ_MIN_MASK); in hwcHasApiVersion()
78 HWComposer* hwc; member
137 mCBContext->hwc = this; in HWComposer()
264 ctx->hwc->invalidate(); in hook_invalidate()
271 ctx->hwc->vsync(disp, timestamp); in hook_vsync()
278 ctx->hwc->hotplug(disp, connected); in hook_hotplug()
857 HWCLayerVersion1(struct hwc_composer_device_1* hwc, hwc_layer_1_t* layer) in HWCLayerVersion1() argument
858 : Iterable<HWCLayerVersion1, hwc_layer_1_t>(layer), mHwc(hwc) { } in HWCLayerVersion1()
1095 HWComposer::VSyncThread::VSyncThread(HWComposer& hwc) in VSyncThread() argument
1096 : mHwc(hwc), mEnabled(false), in VSyncThread()
1098 mRefreshPeriod(hwc.getRefreshPeriod(HWC_DISPLAY_PRIMARY)) in VSyncThread()