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()
180 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in getDevicesMatchingConnectionStates() local
181 if (iGatt == null) return devices; in getDevicesMatchingConnectionStates()
182 devices = iGatt.getDevicesMatchingConnectionStates(states); in getDevicesMatchingConnectionStates()
231 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in openGattServer() local
232 if (iGatt == null) { in openGattServer()
236 BluetoothGattServer mGattServer = new BluetoothGattServer(context, iGatt,transport); in openGattServer()
DBluetoothDevice.java1580 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in connectGatt() local
1581 if (iGatt == null) { in connectGatt()
1585 BluetoothGatt gatt = new BluetoothGatt(context, iGatt, this, transport); in connectGatt()
DBluetoothAdapter.java1349 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in isHardwareTrackingFiltersAvailable() local
1350 if (iGatt == null) { in isHardwareTrackingFiltersAvailable()
1354 return (iGatt.numHwTrackFiltersAvailable() != 0); in isHardwareTrackingFiltersAvailable()
2186 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in startLeScan() local
2187 if (iGatt == null) { in startLeScan()
DBluetoothGattServer.java310 /*package*/ BluetoothGattServer(Context context, IBluetoothGatt iGatt, int transport) { in BluetoothGattServer() argument
312 mService = iGatt; in BluetoothGattServer()
DBluetoothGatt.java611 /*package*/ BluetoothGatt(Context context, IBluetoothGatt iGatt, BluetoothDevice device, in BluetoothGatt() argument
614 mService = iGatt; in BluetoothGatt()