Searched refs:iGatt (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/bluetooth/ |
D | BluetoothManager.java | 134 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()
|
D | BluetoothDevice.java | 1591 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in connectGatt() local 1592 if (iGatt == null) { in connectGatt() 1596 BluetoothGatt gatt = new BluetoothGatt(context, iGatt, this, transport); in connectGatt()
|
D | BluetoothAdapter.java | 1401 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in isHardwareTrackingFiltersAvailable() local 1402 if (iGatt == null) { in isHardwareTrackingFiltersAvailable() 1406 return (iGatt.numHwTrackFiltersAvailable() != 0); in isHardwareTrackingFiltersAvailable() 2295 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in startLeScan() local 2296 if (iGatt == null) { in startLeScan()
|
D | BluetoothGattServer.java | 310 /*package*/ BluetoothGattServer(Context context, IBluetoothGatt iGatt, int transport) { in BluetoothGattServer() argument 312 mService = iGatt; in BluetoothGattServer()
|
D | BluetoothGatt.java | 499 /*package*/ BluetoothGatt(Context context, IBluetoothGatt iGatt, BluetoothDevice device, in BluetoothGatt() argument 502 mService = iGatt; in BluetoothGatt()
|