Searched refs:bluetoothManager (Results 1 – 11 of 11) sorted by relevance
114 BluetoothManager bluetoothManager = mContext.getSystemService(BluetoothManager.class); in testMidCallComponentEnablementWithNoneAvailableAtStart() local125 bluetoothManager.getAdapter().disable(false); in testMidCallComponentEnablementWithNoneAvailableAtStart()174 bluetoothManager.getAdapter().enable(); in testMidCallComponentEnablementWithNoneAvailableAtStart()
49 BluetoothManager bluetoothManager = getSystemService(BluetoothManager.class); in onCreate() local50 BluetoothAdapter bluetoothAdapter = bluetoothManager.getAdapter(); in onCreate()
51 BluetoothManager bluetoothManager = getSystemService(BluetoothManager.class); in onCreate() local52 BluetoothAdapter bluetoothAdapter = bluetoothManager.getAdapter(); in onCreate()
50 BluetoothManager bluetoothManager = getSystemService(BluetoothManager.class); in onResume() local51 BluetoothAdapter bluetoothAdapter = bluetoothManager.getAdapter(); in onResume()
110 BluetoothManager bluetoothManager = getSystemService(BluetoothManager.class); in onCreate() local111 mBluetoothAdapter = bluetoothManager.getAdapter(); in onCreate()
125 BluetoothManager bluetoothManager = getSystemService(BluetoothManager.class); in onCreate() local126 mBluetoothAdapter = bluetoothManager.getAdapter(); in onCreate()
202 BluetoothManager bluetoothManager = in setup() local204 assumeTrue(bluetoothManager != null); in setup()205 mBluetoothDevice1 = bluetoothManager.getAdapter().getRemoteDevice(BT_ADDRESS1); in setup()206 mBluetoothDevice2 = bluetoothManager.getAdapter().getRemoteDevice(BT_ADDRESS2); in setup()
82 private val bluetoothManager = context.getSystemService(BluetoothManager::class.java)!! in <lambda>() constant83 private val bluetoothAdapter: BluetoothAdapter = bluetoothManager.adapter in <lambda>()
174 () -> sDeviceState.dpc().bluetoothManager().getAdapter().disable()) in disable_bluetoothIsDisabled()181 () -> sDeviceState.dpc().bluetoothManager().getAdapter().isEnabled()) in disable_bluetoothIsDisabled()206 () -> sDeviceState.dpc().bluetoothManager().getAdapter().enable()) in enable_bluetoothIsEnabled()212 () -> sDeviceState.dpc().bluetoothManager().getAdapter().isEnabled()) in enable_bluetoothIsEnabled()
435 assertThat(testAppInstance.bluetoothManager().getConnectedDevices(/* profile= */ 7)) in bluetoothManager_returnsUsableInstance()460 testAppInstance.bluetoothManager().getAdapter().isEnabled(); in bluetoothManager_getAdapter_returnsUsableInstance()
430 public RemoteBluetoothManager bluetoothManager() { in bluetoothManager() method in TestAppInstance