Home
last modified time | relevance | path

Searched refs:DisplayHotplugEvent (Results 1 – 13 of 13) sorted by relevance

/hardware/interfaces/graphics/composer/aidl/android/hardware/graphics/composer3/
DIComposerCallback.aidl19 import android.hardware.graphics.common.DisplayHotplugEvent;
141 void onHotplugEvent(long display, DisplayHotplugEvent event); in onHotplugEvent()
/hardware/interfaces/graphics/common/aidl/aidl_api/android.hardware.graphics.common/5/android/hardware/graphics/common/
DDisplayHotplugEvent.aidl36 enum DisplayHotplugEvent { enum
/hardware/interfaces/graphics/common/aidl/android/hardware/graphics/common/
DDisplayHotplugEvent.aidl24 enum DisplayHotplugEvent { enum
/hardware/interfaces/graphics/common/aidl/aidl_api/android.hardware.graphics.common/current/android/hardware/graphics/common/
DDisplayHotplugEvent.aidl36 enum DisplayHotplugEvent { enum
/hardware/interfaces/graphics/composer/aidl/vts/
DGraphicsComposerCallback.cpp198 common::DisplayHotplugEvent event) { in onHotplugEvent()
200 case common::DisplayHotplugEvent::CONNECTED: in onHotplugEvent()
202 case common::DisplayHotplugEvent::DISCONNECTED: in onHotplugEvent()
DGraphicsComposerCallback.h67 common::DisplayHotplugEvent) override;
/hardware/interfaces/graphics/composer/aidl/aidl_api/android.hardware.graphics.composer3/3/android/hardware/graphics/composer3/
DIComposerCallback.aidl47 void onHotplugEvent(long display, android.hardware.graphics.common.DisplayHotplugEvent event); in onHotplugEvent()
/hardware/interfaces/graphics/composer/aidl/aidl_api/android.hardware.graphics.composer3/current/android/hardware/graphics/composer3/
DIComposerCallback.aidl47 void onHotplugEvent(long display, android.hardware.graphics.common.DisplayHotplugEvent event); in onHotplugEvent()
/hardware/google/graphics/common/libhwc2.1/libdevice/
DExynosDevice.cpp527 using DisplayHotplugEvent = aidl::android::hardware::graphics::common::DisplayHotplugEvent; typedef
528 DisplayHotplugEvent hotplug_event_to_aidl(bool connected, int hotplugErrorCode) { in hotplug_event_to_aidl()
531 return connected ? DisplayHotplugEvent::CONNECTED : DisplayHotplugEvent::DISCONNECTED; in hotplug_event_to_aidl()
533 return DisplayHotplugEvent::ERROR_INCOMPATIBLE_CABLE; in hotplug_event_to_aidl()
535 return DisplayHotplugEvent::ERROR_UNKNOWN; in hotplug_event_to_aidl()
599 aidl::android::hardware::graphics::common::DisplayHotplugEvent)>( in onHotPlug()
/hardware/google/graphics/common/hwc3/
DComposerClient.h53 void onHotplugEvent(int64_t display, common::DisplayHotplugEvent event) override;
DComposerClient.cpp521 common::DisplayHotplugEvent event) { in onHotplugEvent()
523 processDisplayResources(display, event == common::DisplayHotplugEvent::CONNECTED); in onHotplugEvent()
/hardware/google/graphics/common/hwc3/include/
DIComposerHal.h115 virtual void onHotplugEvent(int64_t display, common::DisplayHotplugEvent event) = 0;
/hardware/google/graphics/common/hwc3/impl/
DHalImpl.cpp128 common::DisplayHotplugEvent hotplugEvent) { in hotplugEvent()