Home | History | Annotate | Download | only in hdmi

Lines Matching refs:portId

125                     int portId = source.readInt();
134 return new HdmiDeviceInfo(logicalAddress, physicalAddress, portId,
139 return new HdmiDeviceInfo(physicalAddress, portId, adopterId, deviceId);
141 return new HdmiDeviceInfo(physicalAddress, portId);
160 * @param portId HDMI port ID (1 for HDMI1)
167 public HdmiDeviceInfo(int logicalAddress, int physicalAddress, int portId, int deviceType,
171 mPortId = portId;
189 * @param portId HDMI port ID (1 for HDMI1)
195 public HdmiDeviceInfo(int logicalAddress, int physicalAddress, int portId, int deviceType,
197 this(logicalAddress, physicalAddress, portId, deviceType,
205 * @param portId HDMI port ID (1 for HDMI1)
208 public HdmiDeviceInfo(int physicalAddress, int portId) {
211 mPortId = portId;
213 mId = idForHardware(portId);
218 mDisplayName = "HDMI" + portId;
228 * @param portId portId HDMI port ID (1 for HDMI1)
233 public HdmiDeviceInfo(int physicalAddress, int portId, int adopterId, int deviceId) {
236 mPortId = portId;
238 mId = idForMhlDevice(portId);
292 * @param portId port which the MHL device is connected to
295 public static int idForMhlDevice(int portId) {
297 return ID_OFFSET_MHL + portId;
303 * @param portId port id
306 public static int idForHardware(int portId) {
307 return ID_OFFSET_HARDWARE + portId;