/frameworks/base/core/java/android/hardware/hdmi/ |
HdmiPortInfo.java | 24 * HDMI-CEC, MHL, ARC(Audio Return Channel), and physical address assigned to each port. 49 * @param cec {@code true} if HDMI-CEC is supported on the port 53 public HdmiPortInfo(int id, int type, int address, boolean cec, boolean mhl, boolean arc) { 57 mCecSupported = cec; 90 * Returns {@code true} if the port supports HDMI-CEC signaling. 92 * @return {@code true} if the port supports HDMI-CEC signaling. 136 boolean cec = (source.readInt() == 1); 139 return new HdmiPortInfo(id, type, address, cec, arc, mhl); 170 s.append("cec: ").append(mCecSupported).append(", ") [all...] |
/frameworks/base/services/core/jni/ |
com_android_server_hdmi_HdmiCecController.cpp | 56 // Get CEC version from driver. 91 mEvent.cec.initiator = event.cec.initiator; 92 mEvent.cec.destination = event.cec.destination; 93 mEvent.cec.length = event.cec.length; 94 std::memcpy(mEvent.cec.body, event.cec.body, event.cec.length) 106 const cec_message_t& cec() const { function in class:android::CecEventWrapper [all...] |
/hardware/qcom/display/msm8084/hdmi_cec/ |
qhdmi_cec.cpp | 171 ssize_t err = write_int_to_node(ctx, "cec/logical_addr", addr); 182 write_int_to_node(ctx, "cec/logical_addr", -1); 231 snprintf(write_msg_path, sizeof(write_msg_path), "%s/cec/wr_msg", 240 ALOGE("%s: CEC line busy, retrying", __FUNCTION__); 252 ALOGE("%s: CEC line is busy, max retry count exceeded", 257 ALOGE("%s: Failed to send CEC message err: %zd - %s", 261 ALOGD_IF(DEBUG, "%s: Sent CEC message - %zd bytes written", 279 event.cec.length = msg[CEC_OFFSET_FRAME_LENGTH] - 1; 280 event.cec.initiator = (cec_logical_address_t) msg[CEC_OFFSET_SENDER_ID]; 281 event.cec.destination = (cec_logical_address_t) msg[CEC_OFFSET_RECEIVER_ID] [all...] |
/device/generic/goldfish/camera/ |
EmulatedCamera3.cpp | 208 const EmulatedCamera3* cec = static_cast<const EmulatedCamera3*>(d); local 209 return const_cast<EmulatedCamera3*>(cec);
|
EmulatedCamera2.cpp | 218 const EmulatedCamera2* cec = static_cast<const EmulatedCamera2*>(d); local 219 return const_cast<EmulatedCamera2*>(cec);
|
/device/asus/fugu/ |
device.mk | 81 # Hdmi CEC: Fugu works as a playback device (4). 208 frameworks/native/data/etc/android.hardware.hdmi.cec.xml:system/etc/permissions/android.hardware.hdmi.cec.xml
|
/hardware/libhardware/include/hardware/ |
hdmi_cec.h | 68 * HDMI CEC messages 199 /* When set to false, all the CEC commands are discarded. Used when 200 * user changes the TV settings to disable CEC functionality. 206 * CEC service and yield the control over to the microprocessor that is 209 * handling the cec commands. This is called when system goes 211 * start/stop handling CEC commands on behalf of the system. 218 * Maximum length in bytes of cec message body (exclude header block), 219 * should not exceed 16 (spec CEC 6 Frame Description) 245 int opcode; /* CEC opcode */ 255 cec_message_t cec; member in union:hdmi_event::__anon40470 [all...] |
/prebuilts/sdk/system_current/ |
android.jar | |