Lines Matching refs:HWC2OnFbAdapter

42     auto& adapter = HWC2OnFbAdapter::cast(device);  in dumpHook()
53 auto& adapter = HWC2OnFbAdapter::cast(device); in registerCallbackHook()
93 auto& adapter = HWC2OnFbAdapter::cast(device); in getDisplayNameHook()
109 auto& adapter = HWC2OnFbAdapter::cast(device); in getDisplayTypeHook()
119 auto& adapter = HWC2OnFbAdapter::cast(device); in getDozeSupportHook()
131 auto& adapter = HWC2OnFbAdapter::cast(device); in getHdrCapabilitiesHook()
141 auto& adapter = HWC2OnFbAdapter::cast(device); in setPowerModeHook()
151 auto& adapter = HWC2OnFbAdapter::cast(device); in setVsyncEnabledHook()
162 auto& adapter = HWC2OnFbAdapter::cast(device); in getColorModesHook()
180 auto& adapter = HWC2OnFbAdapter::cast(device); in setColorModeHook()
193 auto& adapter = HWC2OnFbAdapter::cast(device); in setColorTransformHook()
199 adapter.setState(HWC2OnFbAdapter::State::MODIFIED); in setColorTransformHook()
205 auto& adapter = HWC2OnFbAdapter::cast(device); in getClientTargetSupportHook()
226 auto& adapter = HWC2OnFbAdapter::cast(device); in setClientTargetHook()
241 auto& adapter = HWC2OnFbAdapter::cast(device); in getDisplayConfigsHook()
260 auto& adapter = HWC2OnFbAdapter::cast(device); in getDisplayAttributeHook()
294 auto& adapter = HWC2OnFbAdapter::cast(device); in getActiveConfigHook()
304 auto& adapter = HWC2OnFbAdapter::cast(device); in setActiveConfigHook()
317 auto& adapter = HWC2OnFbAdapter::cast(device); in validateDisplayHook()
327 adapter.setState(HWC2OnFbAdapter::State::VALIDATED_WITH_CHANGES); in validateDisplayHook()
330 adapter.setState(HWC2OnFbAdapter::State::VALIDATED); in validateDisplayHook()
338 auto& adapter = HWC2OnFbAdapter::cast(device); in getChangedCompositionTypesHook()
342 if (adapter.getState() == HWC2OnFbAdapter::State::MODIFIED) { in getChangedCompositionTypesHook()
365 auto& adapter = HWC2OnFbAdapter::cast(device); in getDisplayRequestsHook()
369 if (adapter.getState() == HWC2OnFbAdapter::State::MODIFIED) { in getDisplayRequestsHook()
379 auto& adapter = HWC2OnFbAdapter::cast(device); in acceptDisplayChangesHook()
383 if (adapter.getState() == HWC2OnFbAdapter::State::MODIFIED) { in acceptDisplayChangesHook()
388 adapter.setState(HWC2OnFbAdapter::State::VALIDATED); in acceptDisplayChangesHook()
394 auto& adapter = HWC2OnFbAdapter::cast(device); in presentDisplayHook()
398 if (adapter.getState() != HWC2OnFbAdapter::State::VALIDATED) { in presentDisplayHook()
411 auto& adapter = HWC2OnFbAdapter::cast(device); in getReleaseFencesHook()
421 auto& adapter = HWC2OnFbAdapter::cast(device); in createLayerHook()
427 adapter.setState(HWC2OnFbAdapter::State::MODIFIED); in createLayerHook()
432 auto& adapter = HWC2OnFbAdapter::cast(device); in destroyLayerHook()
438 adapter.setState(HWC2OnFbAdapter::State::MODIFIED); in destroyLayerHook()
447 auto& adapter = HWC2OnFbAdapter::cast(device); in setCursorPositionHook()
463 auto& adapter = HWC2OnFbAdapter::cast(device); in setLayerBufferHook()
477 auto& adapter = HWC2OnFbAdapter::cast(device); in setLayerSurfaceDamageHook()
491 auto& adapter = HWC2OnFbAdapter::cast(device); in setLayerCompositionTypeHook()
499 adapter.setState(HWC2OnFbAdapter::State::MODIFIED); in setLayerCompositionTypeHook()
506 auto& adapter = HWC2OnFbAdapter::cast(device); in setLayerStateHook()
514 adapter.setState(HWC2OnFbAdapter::State::MODIFIED); in setLayerStateHook()
636 auto& adapter = HWC2OnFbAdapter::cast(device); in getCapabilitiesHook()
641 auto& adapter = HWC2OnFbAdapter::cast(device); in closeHook()
648 HWC2OnFbAdapter::HWC2OnFbAdapter(framebuffer_device_t* fbDevice) in HWC2OnFbAdapter() function in android::HWC2OnFbAdapter
669 HWC2OnFbAdapter& HWC2OnFbAdapter::cast(hw_device_t* device) { in cast()
670 return *reinterpret_cast<HWC2OnFbAdapter*>(device); in cast()
673 HWC2OnFbAdapter& HWC2OnFbAdapter::cast(hwc2_device_t* device) { in cast()
674 return *reinterpret_cast<HWC2OnFbAdapter*>(device); in cast()
677 hwc2_display_t HWC2OnFbAdapter::getDisplayId() { in getDisplayId()
681 hwc2_config_t HWC2OnFbAdapter::getConfigId() { in getConfigId()
685 void HWC2OnFbAdapter::close() { in close()
690 const HWC2OnFbAdapter::Info& HWC2OnFbAdapter::getInfo() const { in getInfo()
694 void HWC2OnFbAdapter::updateDebugString() { in updateDebugString()
704 const std::string& HWC2OnFbAdapter::getDebugString() const { in getDebugString()
708 void HWC2OnFbAdapter::setState(State state) { in setState()
712 HWC2OnFbAdapter::State HWC2OnFbAdapter::getState() const { in getState()
716 hwc2_layer_t HWC2OnFbAdapter::addLayer() { in addLayer()
725 bool HWC2OnFbAdapter::removeLayer(hwc2_layer_t layer) { in removeLayer()
730 bool HWC2OnFbAdapter::hasLayer(hwc2_layer_t layer) const { in hasLayer()
734 bool HWC2OnFbAdapter::markLayerDirty(hwc2_layer_t layer, bool dirty) { in markLayerDirty()
748 const std::unordered_set<hwc2_layer_t>& HWC2OnFbAdapter::getDirtyLayers() const { in getDirtyLayers()
752 void HWC2OnFbAdapter::clearDirtyLayers() { in clearDirtyLayers()
777 void HWC2OnFbAdapter::setBuffer(buffer_handle_t buffer) { in setBuffer()
784 bool HWC2OnFbAdapter::postBuffer() { in postBuffer()
793 void HWC2OnFbAdapter::setVsyncCallback(HWC2_PFN_VSYNC callback, hwc2_callback_data_t data) { in setVsyncCallback()
797 void HWC2OnFbAdapter::enableVsync(bool enable) { in enableVsync()
801 void HWC2OnFbAdapter::getCapabilities(uint32_t* outCount, in getCapabilities()
818 int64_t HWC2OnFbAdapter::VsyncThread::now() { in now()
825 bool HWC2OnFbAdapter::VsyncThread::sleepUntil(int64_t t) { in sleepUntil()
843 void HWC2OnFbAdapter::VsyncThread::start(int64_t firstVsync, int64_t period) { in start()
850 void HWC2OnFbAdapter::VsyncThread::stop() { in stop()
859 void HWC2OnFbAdapter::VsyncThread::setCallback(HWC2_PFN_VSYNC callback, hwc2_callback_data_t data) { in setCallback()
865 void HWC2OnFbAdapter::VsyncThread::enableCallback(bool enable) { in enableCallback()
873 void HWC2OnFbAdapter::VsyncThread::vsyncLoop() { in vsyncLoop()