HomeSort by relevance Sort by last modified time
    Searched defs:mBluetoothA2dpConfigStore (Results 1 - 8 of 8) sorted by null

  /packages/apps/Settings/tests/robotests/src/com/android/settings/development/
BluetoothAudioBitsPerSamplePreferenceControllerTest.java 50 private BluetoothA2dpConfigStore mBluetoothA2dpConfigStore;
71 mLifecycle, mBluetoothA2dpConfigStore));
82 verify(mBluetoothA2dpConfigStore).setBitsPerSample(BluetoothCodecConfig.BITS_PER_SAMPLE_24);
90 verify(mBluetoothA2dpConfigStore).setBitsPerSample(
BluetoothAudioChannelModePreferenceControllerTest.java 50 private BluetoothA2dpConfigStore mBluetoothA2dpConfigStore;
70 mLifecycle, mBluetoothA2dpConfigStore));
81 verify(mBluetoothA2dpConfigStore).setChannelMode(BluetoothCodecConfig.CHANNEL_MODE_STEREO);
89 verify(mBluetoothA2dpConfigStore).setChannelMode(BluetoothCodecConfig.CHANNEL_MODE_NONE);
BluetoothAudioCodecPreferenceControllerTest.java 50 private BluetoothA2dpConfigStore mBluetoothA2dpConfigStore;
75 mBluetoothA2dpConfigStore));
86 verify(mBluetoothA2dpConfigStore).setCodecType(BluetoothCodecConfig.SOURCE_CODEC_TYPE_AAC);
87 verify(mBluetoothA2dpConfigStore).setCodecPriority(
96 verify(mBluetoothA2dpConfigStore).setCodecPriority(
BluetoothAudioQualityPreferenceControllerTest.java 50 private BluetoothA2dpConfigStore mBluetoothA2dpConfigStore;
70 mLifecycle, mBluetoothA2dpConfigStore));
81 verify(mBluetoothA2dpConfigStore).setCodecSpecific1Value(1003);
89 verify(mBluetoothA2dpConfigStore).setCodecSpecific1Value(1000);
BluetoothAudioSampleRatePreferenceControllerTest.java 50 private BluetoothA2dpConfigStore mBluetoothA2dpConfigStore;
72 mBluetoothA2dpConfigStore));
83 verify(mBluetoothA2dpConfigStore).setSampleRate(BluetoothCodecConfig.SAMPLE_RATE_48000);
AbstractBluetoothA2dpPreferenceControllerTest.java 57 private BluetoothA2dpConfigStore mBluetoothA2dpConfigStore;
71 mBluetoothA2dpConfigStore));
74 when(mBluetoothA2dpConfigStore.createCodecConfig()).thenReturn(mBluetoothCodecConfig);
  /packages/apps/Settings/src/com/android/settings/development/
AbstractBluetoothA2dpPreferenceController.java 44 protected final BluetoothA2dpConfigStore mBluetoothA2dpConfigStore;
54 mBluetoothA2dpConfigStore = store;
82 final BluetoothCodecConfig codecConfig = mBluetoothA2dpConfigStore.createCodecConfig();
83 synchronized (mBluetoothA2dpConfigStore) {
109 synchronized (mBluetoothA2dpConfigStore) {
DevelopmentSettingsDashboardFragment.java 64 private final BluetoothA2dpConfigStore mBluetoothA2dpConfigStore =
109 synchronized (mBluetoothA2dpConfigStore) {
122 synchronized (mBluetoothA2dpConfigStore) {

Completed in 331 milliseconds