Home
last modified time | relevance | path

Searched refs:iGatt (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
DBluetoothManager.java135 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in getConnectedDevices() local
136 if (iGatt == null) return connectedDevices; in getConnectedDevices()
138 connectedDevices = iGatt.getDevicesMatchingConnectionStates( in getConnectedDevices()
179 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in getDevicesMatchingConnectionStates() local
180 if (iGatt == null) return devices; in getDevicesMatchingConnectionStates()
181 devices = iGatt.getDevicesMatchingConnectionStates(states); in getDevicesMatchingConnectionStates()
230 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in openGattServer() local
231 if (iGatt == null) { in openGattServer()
235 BluetoothGattServer mGattServer = new BluetoothGattServer(iGatt,transport); in openGattServer()
DBluetoothDevice.java1720 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in connectGatt() local
1721 if (iGatt == null) { in connectGatt()
1725 BluetoothGatt gatt = new BluetoothGatt(iGatt, this, transport, phy); in connectGatt()
DBluetoothAdapter.java1503 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in isHardwareTrackingFiltersAvailable() local
1504 if (iGatt == null) { in isHardwareTrackingFiltersAvailable()
1508 return (iGatt.numHwTrackFiltersAvailable() != 0); in isHardwareTrackingFiltersAvailable()
2418 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in startLeScan() local
2419 if (iGatt == null) { in startLeScan()
DBluetoothGattServer.java361 /*package*/ BluetoothGattServer(IBluetoothGatt iGatt, int transport) { in BluetoothGattServer() argument
362 mService = iGatt; in BluetoothGattServer()
DBluetoothGatt.java630 /*package*/ BluetoothGatt(IBluetoothGatt iGatt, BluetoothDevice device, in BluetoothGatt() argument
632 mService = iGatt; in BluetoothGatt()