Home
last modified time | relevance | path

Searched refs:bitToFeatureSupportStatus (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/hardware/hdmi/
DDeviceFeatures.java98 .setRecordTvScreenSupport(bitToFeatureSupportStatus(((b >> 6) & 1) == 1)) in fromOperand()
99 .setSetOsdStringSupport(bitToFeatureSupportStatus(((b >> 5) & 1) == 1)) in fromOperand()
100 .setDeckControlSupport(bitToFeatureSupportStatus(((b >> 4) & 1) == 1)) in fromOperand()
101 .setSetAudioRateSupport(bitToFeatureSupportStatus(((b >> 3) & 1) == 1)) in fromOperand()
102 .setArcTxSupport(bitToFeatureSupportStatus(((b >> 2) & 1) == 1)) in fromOperand()
103 .setArcRxSupport(bitToFeatureSupportStatus(((b >> 1) & 1) == 1)) in fromOperand()
104 .setSetAudioVolumeLevelSupport(bitToFeatureSupportStatus((b & 1) == 1)); in fromOperand()
144 private static int bitToFeatureSupportStatus(boolean bit) { in bitToFeatureSupportStatus() method in DeviceFeatures