/frameworks/base/services/tests/servicestests/src/com/android/server/hdmi/ |
D | ResendCecCommandActionPlaybackTest.java | 56 private int mPhysicalAddress; field in ResendCecCommandActionPlaybackTest 90 mPhysicalAddress = 0x2000; in setUp() 91 mNativeWrapper.setPhysicalAddress(mPhysicalAddress); in setUp() 113 mPlaybackDevice.getDeviceInfo().getLogicalAddress(), mPhysicalAddress); in sendCecCommand_activeSource_sendMessageFails_resendMessage() 140 mPlaybackDevice.getDeviceInfo().getLogicalAddress(), mPhysicalAddress); in sendCecCommand_inactiveSource_sendMessageFails_resendMessage() 167 mPhysicalAddress, "SendCecCommandActionPlaybackTest"); in sendCecCommand_inactiveSource_onStandby_powerControlModeNone_sendMessage() local 172 mPlaybackDevice.getDeviceInfo().getLogicalAddress(), mPhysicalAddress); in sendCecCommand_inactiveSource_onStandby_powerControlModeNone_sendMessage() 180 mPhysicalAddress, "SendCecCommandActionPlaybackTest"); in sendCecCommand_inactiveSource_onStandby_initiatedByCec_sendMessage() local 185 mPlaybackDevice.getDeviceInfo().getLogicalAddress(), mPhysicalAddress); in sendCecCommand_inactiveSource_onStandby_initiatedByCec_sendMessage() 197 mPlaybackDevice.getDeviceInfo().getLogicalAddress(), mPhysicalAddress, in sendCecCommand_routingChange_sendMessageFails_resendMessage() [all …]
|
D | ActiveSourceActionTest.java | 59 private int mPhysicalAddress; field in ActiveSourceActionTest 89 mPhysicalAddress = 0x2000; in setUp() 90 mNativeWrapper.setPhysicalAddress(mPhysicalAddress); in setUp() 118 playbackDevice.getDeviceInfo().getLogicalAddress(), mPhysicalAddress); in playbackDevice_sendsActiveSource_sendsMenuStatus() 145 assertThat(playbackDevice.getActiveSource().physicalAddress).isEqualTo(mPhysicalAddress); in playbackDevice_updatesActiveSourceState()
|
D | ResendCecCommandActionTvTest.java | 55 private int mPhysicalAddress; field in ResendCecCommandActionTvTest 92 mPhysicalAddress = 0x0000; in setUp() 93 mNativeWrapper.setPhysicalAddress(mPhysicalAddress); in setUp() 115 mTvDevice.getDeviceInfo().getLogicalAddress(), mPhysicalAddress); in sendCecCommand_activeSource_sendMessageFails_resendMessage() 142 mTvDevice.getDeviceInfo().getLogicalAddress(), mPhysicalAddress); in sendCecCommand_inactiveSource_sendMessageFails_resendMessage() 170 mTvDevice.getDeviceInfo().getLogicalAddress(), mPhysicalAddress, in sendCecCommand_routingChange_sendMessageFails_resendMessage()
|
D | OneTouchPlayActionTest.java | 84 private int mPhysicalAddress; field in OneTouchPlayActionTest 121 mPhysicalAddress = 0x2000; in setUp() 122 mNativeWrapper.setPhysicalAddress(mPhysicalAddress); in setUp() 160 playbackDevice.getDeviceInfo().getLogicalAddress(), mPhysicalAddress); in succeedWithUnknownTvDevice() 209 playbackDevice.getDeviceInfo().getLogicalAddress(), mPhysicalAddress); in succeedAfterGettingPowerStatusOn_Cec14b() 258 playbackDevice.getDeviceInfo().getLogicalAddress(), mPhysicalAddress); in succeedAfterGettingTransientPowerStatus_Cec14b() 320 playbackDevice.getDeviceInfo().getLogicalAddress(), mPhysicalAddress); in timeOut_Cec14b() 367 playbackDevice.getDeviceInfo().getLogicalAddress(), mPhysicalAddress); in succeedIfPowerStatusOn_Cec20() 404 playbackDevice.getDeviceInfo().getLogicalAddress(), mPhysicalAddress); in succeedIfPowerStatusUnknown_Cec20() 454 playbackDevice.getDeviceInfo().getLogicalAddress(), mPhysicalAddress); in succeedIfPowerStatusStandby_Cec20() [all …]
|
D | SystemAudioAutoInitiationActionTest.java | 64 private int mPhysicalAddress; field in SystemAudioAutoInitiationActionTest 95 mPhysicalAddress = 0x0000; in setUp() 96 mNativeWrapper.setPhysicalAddress(mPhysicalAddress); in setUp() 122 mPhysicalAddress = mHdmiCecLocalDeviceTv.getDeviceInfo().getLogicalAddress(); in setUp()
|
D | DevicePowerStatusActionTest.java | 67 private int mPhysicalAddress; field in DevicePowerStatusActionTest 107 mPhysicalAddress = 0x2000; in setUp() 108 mNativeWrapper.setPhysicalAddress(mPhysicalAddress); in setUp() 293 mPhysicalAddress); in pendingActionDoesNotBlockSendingStandby()
|
D | PowerStatusMonitorActionTest.java | 62 private int mPhysicalAddress; field in PowerStatusMonitorActionTest 114 mPhysicalAddress = 0x0000; in setUp() 115 mNativeWrapper.setPhysicalAddress(mPhysicalAddress); in setUp()
|
D | HdmiCecAtomLoggingTest.java | 81 private int mPhysicalAddress = 0x1110; field in HdmiCecAtomLoggingTest 113 mNativeWrapper.setPhysicalAddress(mPhysicalAddress); in setUp() 163 mPhysicalAddress); in testMessageReported_calledOnOutgoingMessage()
|
D | SetAudioVolumeLevelDiscoveryActionTest.java | 70 private int mPhysicalAddress = 0x1100; field in SetAudioVolumeLevelDiscoveryActionTest 101 mNativeWrapper.setPhysicalAddress(mPhysicalAddress); in setUp()
|
D | HdmiCecAtomLoggingTvTest.java | 74 private int mPhysicalAddress = 0x0000; field in HdmiCecAtomLoggingTvTest 107 mNativeWrapper.setPhysicalAddress(mPhysicalAddress); in setUp()
|
/frameworks/base/core/java/android/hardware/hdmi/ |
D | HdmiDeviceInfo.java | 116 private final int mPhysicalAddress; field in HdmiDeviceInfo 192 mPhysicalAddress = PATH_INVALID; in HdmiDeviceInfo() 219 this.mPhysicalAddress = builder.mPhysicalAddress; in HdmiDeviceInfo() 352 return mPhysicalAddress; in getPhysicalAddress() 481 dest.writeInt(mPhysicalAddress); in writeToParcel() 533 s.append("physical_address: ").append(String.format("0x%04X", mPhysicalAddress)); in toString() 552 && mPhysicalAddress == other.mPhysicalAddress in equals() 568 mPhysicalAddress, in hashCode() 590 private int mPhysicalAddress = PATH_INVALID; field in HdmiDeviceInfo.Builder 618 mPhysicalAddress = hdmiDeviceInfo.mPhysicalAddress; in Builder() [all …]
|
D | HdmiRecordSources.java | 724 private final int mPhysicalAddress; field in HdmiRecordSources.ExternalPhysicalAddress 728 mPhysicalAddress = physicalAddress; in ExternalPhysicalAddress() 733 shortToByteArray((short) mPhysicalAddress, data, index); in extraParamToByteArray()
|
/frameworks/base/services/core/java/com/android/server/hdmi/ |
D | DeviceDiscoveryAction.java | 78 private int mPhysicalAddress = Constants.INVALID_PHYSICAL_ADDRESS; field in DeviceDiscoveryAction.DeviceInfo 92 .setPhysicalAddress(mPhysicalAddress) in toHdmiDeviceInfo() 347 current.mPhysicalAddress = HdmiUtils.twoBytesToInt(params); in handleReportPhysicalAddress() 348 current.mPortId = getPortId(current.mPhysicalAddress); in handleReportPhysicalAddress() 357 current.mPhysicalAddress); in handleReportPhysicalAddress()
|
D | HdmiCecNetwork.java | 104 private int mPhysicalAddress = Constants.INVALID_PHYSICAL_ADDRESS; field in HdmiCecNetwork 438 mPhysicalAddress = Constants.INVALID_PHYSICAL_ADDRESS; in initPortInfo() 864 if (mPhysicalAddress == Constants.INVALID_PHYSICAL_ADDRESS) { in getPhysicalAddress() 865 mPhysicalAddress = mHdmiCecController.getPhysicalAddress(); in getPhysicalAddress() 867 return mPhysicalAddress; in getPhysicalAddress()
|
D | HdmiCecController.java | 1186 private int mPhysicalAddress = INVALID_PHYSICAL_ADDRESS; field in HdmiCecController.NativeWrapperImpl11 1212 mPhysicalAddress = new Short(addr).intValue(); in onValues() 1280 return mPhysicalAddress; in nativeGetPhysicalAddress() 1404 private int mPhysicalAddress = INVALID_PHYSICAL_ADDRESS; field in HdmiCecController.NativeWrapperImpl 1477 return mPhysicalAddress; in nativeGetPhysicalAddress() 1610 mPhysicalAddress = new Short(addr).intValue(); in onValues()
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 20271 Landroid/hardware/hdmi/HdmiDeviceInfo;->mPhysicalAddress:I 20341 Landroid/hardware/hdmi/HdmiRecordSources$ExternalPhysicalAddress;->mPhysicalAddress:I
|