HomeSort by relevance Sort by last modified time
    Searched refs:isHighQualityAudioEnabled (Results 1 - 6 of 6) sorted by null

  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/bluetooth/
A2dpProfileTest.java 90 public void isHighQualityAudioEnabled() {
93 assertThat(mProfile.isHighQualityAudioEnabled(mDevice)).isTrue();
97 assertThat(mProfile.isHighQualityAudioEnabled(mDevice)).isFalse();
100 // then isHighQualityAudioEnabled() should return true or false based on whether optional
110 assertThat(mProfile.isHighQualityAudioEnabled(mDevice)).isFalse();
114 assertThat(mProfile.isHighQualityAudioEnabled(mDevice)).isTrue();
123 assertThat(mProfile.isHighQualityAudioEnabled(mDevice)).isTrue();
125 assertThat(mProfile.isHighQualityAudioEnabled(mDevice)).isFalse();
  /packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
DeviceProfilesSettingsTest.java 94 when(mProfile.isHighQualityAudioEnabled(any())).thenReturn(true);
115 when(mProfile.isHighQualityAudioEnabled(any())).thenReturn(true);
133 when(mProfile.isHighQualityAudioEnabled(any())).thenReturn(true);
172 when(mProfile.isHighQualityAudioEnabled(any())).thenReturn(true);
BluetoothDetailsProfilesControllerTest.java 362 when(profile.isHighQualityAudioEnabled(mDevice)).thenReturn(highQualityAudioEnabled);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDetailsProfilesController.java 120 highQualityPref.setChecked(a2dp.isHighQualityAudioEnabled(device));
DeviceProfilesSettings.java 408 highQualityPref.setChecked(a2dpProfile.isHighQualityAudioEnabled(device));
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
A2dpProfile.java 215 public boolean isHighQualityAudioEnabled(BluetoothDevice device) {

Completed in 643 milliseconds