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

  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpCodecConfig.java 35 private A2dpNativeInterface mA2dpNativeInterface;
46 mA2dpNativeInterface = a2dpNativeInterface;
58 mA2dpNativeInterface.setCodecConfigPreference(device, codecConfigArray);
75 mA2dpNativeInterface.setCodecConfigPreference(device, codecConfigArray);
92 mA2dpNativeInterface.setCodecConfigPreference(device, codecConfigArray);
A2dpStateMachine.java 90 private A2dpNativeInterface mA2dpNativeInterface;
102 mA2dpNativeInterface = a2dpNativeInterface;
184 if (!mA2dpNativeInterface.connectA2dp(mDevice)) {
235 mA2dpNativeInterface.disconnectA2dp(mDevice);
246 mA2dpNativeInterface.disconnectA2dp(mDevice);
291 mA2dpNativeInterface.disconnectA2dp(mDevice);
302 mA2dpNativeInterface.disconnectA2dp(mDevice);
387 mA2dpNativeInterface.disconnectA2dp(mDevice);
437 mA2dpNativeInterface.disconnectA2dp(mDevice);
447 mA2dpNativeInterface.disconnectA2dp(mDevice)
    [all...]
A2dpService.java 69 A2dpNativeInterface mA2dpNativeInterface;
111 mA2dpNativeInterface = Objects.requireNonNull(A2dpNativeInterface.getInstance(),
130 mA2dpCodecConfig = new A2dpCodecConfig(this, mA2dpNativeInterface);
133 mA2dpNativeInterface.init(mMaxConnectedAudioDevices,
187 mA2dpNativeInterface.cleanup();
188 mA2dpNativeInterface = null;
214 mA2dpNativeInterface = null;
459 if (!mA2dpNativeInterface.setActiveDevice(null)) {
502 if (!mA2dpNativeInterface.setActiveDevice(device)) {
    [all...]
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/a2dp/
A2dpServiceTest.java 75 @Mock private A2dpNativeInterface mA2dpNativeInterface;
98 mA2dpService.mA2dpNativeInterface = mA2dpNativeInterface;
235 doReturn(true).when(mA2dpNativeInterface).setActiveDevice(any(BluetoothDevice.class));
238 verify(mA2dpNativeInterface).setActiveDevice(mTestDevice);
246 verify(mA2dpNativeInterface).setActiveDevice(null);
341 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class));
342 doReturn(true).when(mA2dpNativeInterface).disconnectA2dp(any(BluetoothDevice.class));
357 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class));
358 doReturn(true).when(mA2dpNativeInterface).disconnectA2dp(any(BluetoothDevice.class))
    [all...]
A2dpStateMachineTest.java 59 @Mock private A2dpNativeInterface mA2dpNativeInterface;
79 mA2dpNativeInterface, mHandlerThread.getLooper());
191 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class));
192 doReturn(true).when(mA2dpNativeInterface).disconnectA2dp(any(BluetoothDevice.class));
226 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class));
227 doReturn(true).when(mA2dpNativeInterface).disconnectA2dp(any(BluetoothDevice.class));

Completed in 149 milliseconds