Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/bluetooth/
DBluetoothManager.java134 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in getConnectedDevices() local
135 if (iGatt == null) return connectedDevices; in getConnectedDevices()
137 connectedDevices = iGatt.getDevicesMatchingConnectionStates( in getConnectedDevices()
176 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in getDevicesMatchingConnectionStates() local
177 if (iGatt == null) return devices; in getDevicesMatchingConnectionStates()
178 devices = iGatt.getDevicesMatchingConnectionStates(states); in getDevicesMatchingConnectionStates()
229 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in openGattServer() local
230 if (iGatt == null) { in openGattServer()
234 BluetoothGattServer mGattServer = new BluetoothGattServer(iGatt, transport); in openGattServer()
DBluetoothDevice.java1915 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in connectGatt() local
1916 if (iGatt == null) { in connectGatt()
1920 BluetoothGatt gatt = new BluetoothGatt(iGatt, this, transport, opportunistic, phy); in connectGatt()
DBluetoothAdapter.java1718 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in isHardwareTrackingFiltersAvailable() local
1719 if (iGatt == null) { in isHardwareTrackingFiltersAvailable()
1723 return (iGatt.numHwTrackFiltersAvailable() != 0); in isHardwareTrackingFiltersAvailable()
2702 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in startLeScan() local
2703 if (iGatt == null) { in startLeScan()
DBluetoothGattServer.java379 /*package*/ BluetoothGattServer(IBluetoothGatt iGatt, int transport) { in BluetoothGattServer() argument
380 mService = iGatt; in BluetoothGattServer()
DBluetoothGatt.java683 /*package*/ BluetoothGatt(IBluetoothGatt iGatt, BluetoothDevice device, in BluetoothGatt() argument
685 mService = iGatt; in BluetoothGatt()