Searched refs:hdmiCecConfig (Results 1 – 7 of 7) sorted by relevance
75 assertThat(hdmiCecConfig.getAllSettings()) in getAllCecSettings_BasicSanity()219 assertTrue(hdmiCecConfig.isIntValueType( in isIntValueType_BasicSanity()398 assertThat(hdmiCecConfig.getStringValue( in getStringValue_SharedPref_BasicSanity()425 assertThat(hdmiCecConfig.getIntValue( in getIntValue_SharedPref_BasicSanity()459 hdmiCecConfig.setStringValue( in setStringValue_SharedPref_BasicSanity()496 hdmiCecConfig.setIntValue( in setIntValue_SharedPref_BasicSanity()507 hdmiCecConfig.registerChangeListener( in registerChangeListener_SharedPref_BasicSanity()510 hdmiCecConfig.setIntValue( in registerChangeListener_SharedPref_BasicSanity()520 hdmiCecConfig.registerChangeListener( in removeChangeListener_SharedPref_BasicSanity()523 hdmiCecConfig.removeChangeListener( in removeChangeListener_SharedPref_BasicSanity()[all …]
147 HdmiCecConfig hdmiCecConfig = new FakeHdmiCecConfig(context); in setUp() local173 return hdmiCecConfig; in setUp()
98 HdmiCecConfig hdmiCecConfig = new FakeHdmiCecConfig(mContextSpy); in setUp() local99 doReturn(hdmiCecConfig).when(mHdmiControlServiceSpy).getHdmiCecConfig(); in setUp()
101 HdmiCecConfig hdmiCecConfig = new FakeHdmiCecConfig(mContextSpy); in setUp() local119 mHdmiControlServiceSpy.setHdmiCecConfig(hdmiCecConfig); in setUp()
59 if (hdmiCecConfig.getIntValue( in RequestSadAction()64 if (hdmiCecConfig.getIntValue( in RequestSadAction()69 if (hdmiCecConfig.getIntValue( in RequestSadAction()74 if (hdmiCecConfig.getIntValue( in RequestSadAction()79 if (hdmiCecConfig.getIntValue( in RequestSadAction()84 if (hdmiCecConfig.getIntValue( in RequestSadAction()89 if (hdmiCecConfig.getIntValue( in RequestSadAction()94 if (hdmiCecConfig.getIntValue( in RequestSadAction()99 if (hdmiCecConfig.getIntValue( in RequestSadAction()104 if (hdmiCecConfig.getIntValue( in RequestSadAction()[all …]
331 HdmiCecConfig hdmiCecConfig = mService.getHdmiCecConfig(); in getRcFeatures() local332 if (hdmiCecConfig.getIntValue( in getRcFeatures()337 if (hdmiCecConfig.getIntValue( in getRcFeatures()342 if (hdmiCecConfig.getIntValue( in getRcFeatures()347 if (hdmiCecConfig.getIntValue( in getRcFeatures()352 if (hdmiCecConfig.getIntValue(HdmiControlManager in getRcFeatures()
972 void setHdmiCecConfig(HdmiCecConfig hdmiCecConfig) { in setHdmiCecConfig() argument973 mHdmiCecConfig = hdmiCecConfig; in setHdmiCecConfig()2788 HdmiCecConfig hdmiCecConfig = HdmiControlService.this.getHdmiCecConfig(); in dump() local2789 List<String> allSettings = hdmiCecConfig.getAllSettings(); in dump()2790 Set<String> userSettings = new HashSet<>(hdmiCecConfig.getUserSettings()); in dump()2792 if (hdmiCecConfig.isStringValueType(setting)) { in dump()2793 pw.println(setting + " (string): " + hdmiCecConfig.getStringValue(setting) in dump()2794 + " (default: " + hdmiCecConfig.getDefaultStringValue(setting) + ")" in dump()2796 } else if (hdmiCecConfig.isIntValueType(setting)) { in dump()2797 pw.println(setting + " (int): " + hdmiCecConfig.getIntValue(setting) in dump()[all …]