Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/bluetooth/
DBluetoothManager.java137 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in getConnectedDevices() local
138 if (iGatt == null) return connectedDevices; in getConnectedDevices()
140 connectedDevices = iGatt.getDevicesMatchingConnectionStates( in getConnectedDevices()
183 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in getDevicesMatchingConnectionStates() local
184 if (iGatt == null) return devices; in getDevicesMatchingConnectionStates()
185 devices = iGatt.getDevicesMatchingConnectionStates(states); in getDevicesMatchingConnectionStates()
234 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in openGattServer() local
235 if (iGatt == null) { in openGattServer()
239 BluetoothGattServer mGattServer = new BluetoothGattServer(iGatt,transport); in openGattServer()
DBluetoothDevice.java1594 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in connectGatt() local
1595 if (iGatt == null) { in connectGatt()
1599 BluetoothGatt gatt = new BluetoothGatt(iGatt, this, transport); in connectGatt()
DBluetoothAdapter.java1399 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in isHardwareTrackingFiltersAvailable() local
1400 if (iGatt == null) { in isHardwareTrackingFiltersAvailable()
1404 return (iGatt.numHwTrackFiltersAvailable() != 0); in isHardwareTrackingFiltersAvailable()
2280 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in startLeScan() local
2281 if (iGatt == null) { in startLeScan()
DBluetoothGattServer.java309 /*package*/ BluetoothGattServer(IBluetoothGatt iGatt, int transport) { in BluetoothGattServer() argument
310 mService = iGatt; in BluetoothGattServer()
DBluetoothGatt.java509 /*package*/ BluetoothGatt(IBluetoothGatt iGatt, BluetoothDevice device, in BluetoothGatt() argument
511 mService = iGatt; in BluetoothGatt()