HomeSort by relevance Sort by last modified time
    Searched defs:hotplug (Results 1 - 11 of 11) sorted by null

  /system/core/adf/libadfhwc/include/adfhwc/
adfhwc.h 36 * Called on hotplug (required)
38 void (*hotplug)(void *data, int disp, bool connected); member in struct:adf_hwc_event_callbacks
  /external/devlib/devlib/module/
hotplug.py 6 name = 'hotplug'
11 # If a system has just 1 CPU, it makes not sense to hotplug it.
13 # hotpluggable. Thus, check for hotplug support by looking at CPU1
28 self.hotplug(cpu, online=True)
32 self.hotplug(cpu, online=False)
34 def hotplug(self, cpu, online): member in class:HotplugModule
  /frameworks/native/libs/gui/include/gui/
DisplayEventReceiver.h 69 struct Hotplug {
76 Hotplug hotplug; member in union:android::DisplayEventReceiver::Event::__anon41253
  /hardware/intel/img/hwcomposer/merrifield/common/base/
Hwcomposer.cpp 341 void Hwcomposer::hotplug(int disp, bool connected) function in class:android::intel::Hwcomposer
345 // TODO: Two fake hotplug events are sent during mode setting. To avoid
349 if (mProcs && mProcs->hotplug) {
350 DTRACE("report hotplug on disp %d, connected %d", disp, connected);
351 mProcs->hotplug(const_cast<hwc_procs_t*>(mProcs), disp, connected);
352 DTRACE("hotplug callback processed and returned!");
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/
Hwcomposer.cpp 333 void Hwcomposer::hotplug(__attribute__((unused))int disp, bool connected) function in class:android::intel::Hwcomposer
337 if (mProcs && mProcs->hotplug) {
338 DLOGTRACE("report hotplug on disp %d, connected %d", disp, connected);
339 mProcs->hotplug(const_cast<hwc_procs_t*>(mProcs), disp, connected);
340 DLOGTRACE("hotplug callback processed and returned!");
  /system/core/adf/libadfhwc/
adfhwc.cpp 245 adf_hotplug_event *hotplug; local
256 hotplug = reinterpret_cast<adf_hotplug_event *>(event);
257 dev->event_cb->hotplug(dev->event_cb_data, disp, hotplug->connected);
337 ALOGE("failed to enable hotplug event on display %zu: %s",
  /hardware/libhardware/include/hardware/
hwcomposer.h 448 * (*hotplug)() is called by the h/w composer HAL when a display is
450 * the hotplug callback should not be called for it.
456 * The hotplug() callback may call back into the h/w composer on the same
461 * The h/w composer must serialize calls to the hotplug callback; only
467 void (*hotplug)(const struct hwc_procs* procs, int disp, int connected); member in struct:hwc_procs
    [all...]
hdmi_cec.h 162 * HDMI hotplug event type. Used when the event
265 hotplug_event_t hotplug; member in union:hdmi_event::__anon43185
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer_hwc1.cpp 144 mCBContext->procs.hotplug = &hook_hotplug;
146 mCBContext->procs.hotplug = NULL;
276 ctx->hwc->hotplug(disp, connected);
309 void HWComposer::hotplug(int disp, int connected) { function in class:android::HWComposer
311 ALOGE("hotplug event received for invalid display: disp=%d connected=%d",
    [all...]
  /frameworks/native/libs/hwc2on1adapter/
HWC2On1Adapter.cpp 62 hotplug = &hotplugHook;
411 case Callback::Hotplug: // Fall-through
463 } else if (descriptor == Callback::Hotplug) {
464 // Hotplug the primary display
497 auto hotplug = reinterpret_cast<HWC2_PFN_HOTPLUG>(pointer); local
499 hotplug(callbackData, pendingHotplug.first, pendingHotplug.second);
2632 auto hotplug = reinterpret_cast<HWC2_PFN_HOTPLUG>(callbackInfo.pointer); local
    [all...]
  /hardware/qcom/display/msm8994/libhwcomposer/
HWC2On1Adapter.cpp 99 hotplug = &hotplugHook;
457 case Callback::Hotplug: // Fall-through
504 } else if (descriptor == Callback::Hotplug) {
505 // Hotplug the primary display
538 auto hotplug = reinterpret_cast<HWC2_PFN_HOTPLUG>(pointer); local
540 hotplug(callbackData, pendingHotplug.first, pendingHotplug.second);
2661 auto hotplug = reinterpret_cast<HWC2_PFN_HOTPLUG>(callbackInfo.pointer); local
    [all...]

Completed in 475 milliseconds