/packages/apps/Settings/tests/robotests/src/com/android/settings/development/ |
D | BluetoothAudioCodecPreferenceControllerTest.java | 52 private BluetoothA2dpConfigStore mBluetoothA2dpConfigStore; field in BluetoothAudioCodecPreferenceControllerTest 77 mBluetoothA2dpConfigStore)); in setup() 88 verify(mBluetoothA2dpConfigStore).setCodecType(BluetoothCodecConfig.SOURCE_CODEC_TYPE_AAC); in writeConfigurationValues_option2_shouldWriteOption2ToSharedStore() 89 verify(mBluetoothA2dpConfigStore).setCodecPriority( in writeConfigurationValues_option2_shouldWriteOption2ToSharedStore() 98 verify(mBluetoothA2dpConfigStore).setCodecPriority( in writeConfigurationValues_default_shouldSetDefaultPriority()
|
D | BluetoothAudioChannelModePreferenceControllerTest.java | 52 private BluetoothA2dpConfigStore mBluetoothA2dpConfigStore; field in BluetoothAudioChannelModePreferenceControllerTest 72 mLifecycle, mBluetoothA2dpConfigStore)); in setup() 83 verify(mBluetoothA2dpConfigStore).setChannelMode(BluetoothCodecConfig.CHANNEL_MODE_STEREO); in writeConfigurationValues_option2_shouldWriteOption2ToSharedStore() 91 verify(mBluetoothA2dpConfigStore).setChannelMode(BluetoothCodecConfig.CHANNEL_MODE_NONE); in writeConfigurationValues_default_shouldSetDefault()
|
D | BluetoothAudioBitsPerSamplePreferenceControllerTest.java | 52 private BluetoothA2dpConfigStore mBluetoothA2dpConfigStore; field in BluetoothAudioBitsPerSamplePreferenceControllerTest 73 mLifecycle, mBluetoothA2dpConfigStore)); in setup() 84 verify(mBluetoothA2dpConfigStore).setBitsPerSample(BluetoothCodecConfig.BITS_PER_SAMPLE_24); in writeConfigurationValues_option2_shouldWriteOption2ToSharedStore() 92 verify(mBluetoothA2dpConfigStore).setBitsPerSample( in writeConfigurationValues_default_shouldSetDefault()
|
D | BluetoothAudioQualityPreferenceControllerTest.java | 52 private BluetoothA2dpConfigStore mBluetoothA2dpConfigStore; field in BluetoothAudioQualityPreferenceControllerTest 72 mLifecycle, mBluetoothA2dpConfigStore)); in setup() 83 verify(mBluetoothA2dpConfigStore).setCodecSpecific1Value(1003); in writeConfigurationValues_option3_shouldWrite1003ToSharedStore() 91 verify(mBluetoothA2dpConfigStore).setCodecSpecific1Value(1000); in writeConfigurationValues_default_shouldSetDefault()
|
D | BluetoothAudioSampleRatePreferenceControllerTest.java | 52 private BluetoothA2dpConfigStore mBluetoothA2dpConfigStore; field in BluetoothAudioSampleRatePreferenceControllerTest 74 mBluetoothA2dpConfigStore)); in setup() 85 verify(mBluetoothA2dpConfigStore).setSampleRate(BluetoothCodecConfig.SAMPLE_RATE_48000); in writeConfigurationValues_option2_shouldWriteOption2ToSharedStore()
|
D | AbstractBluetoothA2dpPreferenceControllerTest.java | 60 private BluetoothA2dpConfigStore mBluetoothA2dpConfigStore; field in AbstractBluetoothA2dpPreferenceControllerTest 74 mBluetoothA2dpConfigStore)); in setup() 77 when(mBluetoothA2dpConfigStore.createCodecConfig()).thenReturn(mBluetoothCodecConfig); in setup()
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/development/ |
D | AbstractBluetoothA2dpPreferenceController.java | 45 protected final BluetoothA2dpConfigStore mBluetoothA2dpConfigStore; field in AbstractBluetoothA2dpPreferenceController 55 mBluetoothA2dpConfigStore = store; in AbstractBluetoothA2dpPreferenceController() 83 final BluetoothCodecConfig codecConfig = mBluetoothA2dpConfigStore.createCodecConfig(); in onPreferenceChange() 84 synchronized (mBluetoothA2dpConfigStore) { in onPreferenceChange() 114 synchronized (mBluetoothA2dpConfigStore) { in updateState()
|
D | BluetoothAudioCodecPreferenceController.java | 111 synchronized (mBluetoothA2dpConfigStore) { in writeConfigurationValues() 121 synchronized (mBluetoothA2dpConfigStore) { in writeConfigurationValues() 133 mBluetoothA2dpConfigStore.setCodecType(codecTypeValue); in writeConfigurationValues() 134 mBluetoothA2dpConfigStore.setCodecPriority(codecPriorityValue); in writeConfigurationValues()
|
D | DevelopmentSettingsDashboardFragment.java | 69 private final BluetoothA2dpConfigStore mBluetoothA2dpConfigStore = field in DevelopmentSettingsDashboardFragment 114 synchronized (mBluetoothA2dpConfigStore) { 127 synchronized (mBluetoothA2dpConfigStore) {
|
D | BluetoothAudioQualityPreferenceController.java | 73 mBluetoothA2dpConfigStore.setCodecSpecific1Value(codecSpecific1Value); in writeConfigurationValues()
|
D | BluetoothAudioChannelModePreferenceController.java | 76 mBluetoothA2dpConfigStore.setChannelMode(channelModeValue); in writeConfigurationValues()
|
D | BluetoothAudioBitsPerSamplePreferenceController.java | 79 mBluetoothA2dpConfigStore.setBitsPerSample(bitsPerSampleValue); in writeConfigurationValues()
|
D | BluetoothAudioSampleRatePreferenceController.java | 82 mBluetoothA2dpConfigStore.setSampleRate(sampleRateValue); in writeConfigurationValues()
|
/packages/apps/Settings/src/com/android/settings/development/ |
D | AbstractBluetoothA2dpPreferenceController.java | 45 protected final BluetoothA2dpConfigStore mBluetoothA2dpConfigStore; field in AbstractBluetoothA2dpPreferenceController 55 mBluetoothA2dpConfigStore = store; in AbstractBluetoothA2dpPreferenceController() 83 final BluetoothCodecConfig codecConfig = mBluetoothA2dpConfigStore.createCodecConfig(); in onPreferenceChange() 84 synchronized (mBluetoothA2dpConfigStore) { in onPreferenceChange() 118 synchronized (mBluetoothA2dpConfigStore) { in updateState()
|
D | BluetoothAudioCodecPreferenceController.java | 111 synchronized (mBluetoothA2dpConfigStore) { in writeConfigurationValues() 122 synchronized (mBluetoothA2dpConfigStore) { in writeConfigurationValues() 135 mBluetoothA2dpConfigStore.setCodecType(codecTypeValue); in writeConfigurationValues() 136 mBluetoothA2dpConfigStore.setCodecPriority(codecPriorityValue); in writeConfigurationValues()
|
D | DevelopmentSettingsDashboardFragment.java | 69 private final BluetoothA2dpConfigStore mBluetoothA2dpConfigStore = field in DevelopmentSettingsDashboardFragment 114 synchronized (mBluetoothA2dpConfigStore) { 127 synchronized (mBluetoothA2dpConfigStore) {
|
D | BluetoothAudioQualityPreferenceController.java | 73 mBluetoothA2dpConfigStore.setCodecSpecific1Value(codecSpecific1Value); in writeConfigurationValues()
|
D | BluetoothAudioChannelModePreferenceController.java | 76 mBluetoothA2dpConfigStore.setChannelMode(channelModeValue); in writeConfigurationValues()
|
D | BluetoothAudioBitsPerSamplePreferenceController.java | 79 mBluetoothA2dpConfigStore.setBitsPerSample(bitsPerSampleValue); in writeConfigurationValues()
|
D | BluetoothAudioSampleRatePreferenceController.java | 82 mBluetoothA2dpConfigStore.setSampleRate(sampleRateValue); in writeConfigurationValues()
|