HomeSort by relevance Sort by last modified time
    Searched refs:hotplug (Results 1 - 25 of 26) sorted by null

1 2

  /hardware/intel/img/hwcomposer/common/devices/
ExternalDevice.cpp 150 mHwc.hotplug(mType, false);
159 mHwc.hotplug(mType, true);
168 mHwc.hotplug(mType, true);
174 mHwc.hotplug(mType, true);
179 // delay sending hotplug event until HDCP is authenticated
183 mHwc.hotplug(mType, true);
202 DLOGTRACE("HDCP authentication status %d, sending hotplug event...", success);
203 mHwc.hotplug(mType, mConnected);
238 WLOGTRACE("same connection status detected, hotplug event ignored");
245 mHwc.hotplug(mType, mConnected)
    [all...]
  /external/libmtp/
hotplug.sh.in 4 HOTPLUGPATH=/etc/hotplug
61 echo "Not present, adding to hotplug map."
80 echo "Do you also want to install HAL support or the old hotplug support (y/n)?"
94 echo "Do you also want to install the old hotplug support (y/n)?"
122 # This script locates the hotplug distribution on a certain host
124 # The in-parameters are the hotplug directory and the name of a
125 # file of hotplug device entries and a script to be executed for
130 echo "Hotplug in ${HOTPLUGPATH}"
132 echo "Hotplug missing on this system. Cannot install."
148 # of hotplug does not support private usermaps, then we need t
    [all...]
  /external/chromium_org/ui/events/ozone/device/udev/
device_manager_udev.cc 157 const char* hotplug = udev_device_get_property_value(device, "HOTPLUG"); local
167 else if (!strcmp(subsystem, "drm") && hotplug && !strcmp(hotplug, "1"))
  /frameworks/native/include/gui/
DisplayEventReceiver.h 59 struct Hotplug {
66 Hotplug hotplug; member in union:android::DisplayEventReceiver::Event::__anon38787
  /system/core/adf/libadfhwc/include/adfhwc/
adfhwc.h 35 * Called on hotplug (required)
37 void (*hotplug)(void *data, int disp, bool connected); member in struct:adf_hwc_event_callbacks
  /frameworks/base/services/core/jni/
com_android_server_hdmi_HdmiCecController.cpp 97 mEvent.hotplug.connected = event.hotplug.connected;
98 mEvent.hotplug.port_id = event.hotplug.port_id;
110 const hotplug_event_t& hotplug() const { function in class:android::CecEventWrapper
111 return mEvent.hotplug;
136 propagateHotplugEvent(mEventWrapper->hotplug());
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_uevents.cpp 74 int connected = -1; // initial value - will be set to 1/0 based on hotplug
128 ALOGD("%s sending hotplug: connected = %d and dpy:%d",
133 ctx->proc->hotplug(ctx->proc, dpy, connected);
147 ALOGD("%s sending hotplug: connected = %d", __FUNCTION__,
151 ctx->proc->hotplug(ctx->proc, dpy, connected);
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_uevents.cpp 66 int connected = -1; // initial value - will be set to 1/0 based on hotplug
108 ALOGD("%s sending hotplug: connected = %d and dpy:%d",
112 ctx->proc->hotplug(ctx->proc, dpy, connected);
139 ALOGD("%s sending hotplug: connected = %d", __FUNCTION__,
142 ctx->proc->hotplug(ctx->proc, dpy, connected);
  /hardware/intel/img/hwcomposer/include/
Hwcomposer.h 65 virtual void hotplug(int disp, bool connected);
  /system/core/adf/libadfhwc/
adfhwc.cpp 179 adf_hotplug_event *hotplug; local
190 hotplug = reinterpret_cast<adf_hotplug_event *>(event);
191 dev->event_cb->hotplug(dev->event_cb_data, disp, hotplug->connected);
260 ALOGE("failed to enable hotplug event on display %zu: %s",
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_uevents.cpp 129 /* Need to send hotplug only when connected WFD in proprietary path */
132 "hotplug event for wfd display", __FUNCTION__);
133 ctx->proc->hotplug(ctx->proc, HWC_DISPLAY_EXTERNAL,
191 /* We need to send hotplug to SF only when we are disconnecting
195 ALOGE_IF(UEVENT_DEBUG,"%s:Sending EXTERNAL OFFLINE hotplug"
197 ctx->proc->hotplug(ctx->proc, HWC_DISPLAY_EXTERNAL,
233 // 1. wfd-client use hdmi hotplug mechanism.
276 "hotplug event", __FUNCTION__);
277 ctx->proc->hotplug(ctx->proc,HWC_DISPLAY_EXTERNAL,
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_uevents.cpp 174 /* Need to send hotplug only when connected WFD in proprietary path */
177 "hotplug event for wfd display", __FUNCTION__);
178 ctx->proc->hotplug(ctx->proc, HWC_DISPLAY_EXTERNAL,
230 /* We need to send hotplug to SF only when we are disconnecting
234 ALOGE_IF(UEVENT_DEBUG,"%s:Sending EXTERNAL OFFLINE hotplug"
236 ctx->proc->hotplug(ctx->proc, HWC_DISPLAY_EXTERNAL,
271 // 1. wfd-client use hdmi hotplug mechanism.
314 "hotplug event", __FUNCTION__);
315 ctx->proc->hotplug(ctx->proc,HWC_DISPLAY_EXTERNAL,
  /hardware/intel/img/hwcomposer/common/base/
Hwcomposer.cpp 333 void Hwcomposer::hotplug(__attribute__((unused))int disp, bool connected) function in class:android::intel::Hwcomposer
338 if (mProcs && mProcs->hotplug) {
339 DLOGTRACE("report hotplug on disp %d, connected %d", disp, connected);
340 mProcs->hotplug(const_cast<hwc_procs_t*>(mProcs), disp, connected);
341 DLOGTRACE("hotplug callback processed and returned!");
  /external/chromium_org/third_party/hwcplus/include/hardware/
hwcomposer.h 411 * (*hotplug)() is called by the h/w composer HAL when a display is
413 * the hotplug callback should not be called for it.
419 * The hotplug() callback may call back into the h/w composer on the same
424 * The h/w composer must serialize calls to the hotplug callback; only
430 void (*hotplug)(const struct hwc_procs* procs, int disp, int connected); member in struct:hwc_procs
  /hardware/libhardware/include/hardware/
hwcomposer.h 463 * (*hotplug)() is called by the h/w composer HAL when a display is
465 * the hotplug callback should not be called for it.
471 * The hotplug() callback may call back into the h/w composer on the same
476 * The h/w composer must serialize calls to the hotplug callback; only
482 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
256 hotplug_event_t hotplug; member in union:hdmi_event::__anon40470
  /frameworks/base/core/jni/
android_view_DisplayEventReceiver.cpp 173 dispatchHotplug(ev.header.timestamp, ev.header.id, ev.hotplug.connected);
201 ALOGV("receiver %p ~ Invoking hotplug handler.", this);
204 ALOGV("receiver %p ~ Returned from hotplug handler.", this);
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.h 319 inline void hotplug(int disp, int connected);
HWComposer.cpp 142 mCBContext->procs.hotplug = &hook_hotplug;
144 mCBContext->procs.hotplug = NULL;
274 ctx->hwc->hotplug(disp, connected);
307 void HWComposer::hotplug(int disp, int connected) { function in class:android::HWComposer
309 ALOGE("hotplug event received for invalid display: disp=%d connected=%d",
    [all...]
  /frameworks/native/services/surfaceflinger/
EventThread.cpp 159 "received hotplug event for an invalid display (id=%d)", type);
167 event.hotplug.connected = connected;
  /hardware/qcom/display/msm8084/hdmi_cec/
qhdmi_cec.cpp 294 event.hotplug.connected = connected ? HDMI_CONNECTED : HDMI_NOT_CONNECTED;
  /hardware/libhardware/tests/hwc/
cnativewindow.c 362 .hotplug = hwc_hotplug,
  /hardware/samsung_slsi/exynos5/libhwc/
hwc.cpp     [all...]
  /external/libsepol/tests/policies/test-cond/
refpolicy-base.conf     [all...]
  /cts/tools/selinux/src/
example_input_policy.conf     [all...]

Completed in 565 milliseconds

1 2