Searched refs:iGatt (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/bluetooth/ |
D | BluetoothManager.java | 130 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in getConnectedDevices() local 131 if (iGatt == null) return connectedDevices; in getConnectedDevices() 133 connectedDevices = iGatt.getDevicesMatchingConnectionStates( in getConnectedDevices() 175 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in getDevicesMatchingConnectionStates() local 176 if (iGatt == null) return devices; in getDevicesMatchingConnectionStates() 177 devices = iGatt.getDevicesMatchingConnectionStates(states); in getDevicesMatchingConnectionStates() 226 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in openGattServer() local 227 if (iGatt == null) { in openGattServer() 231 BluetoothGattServer mGattServer = new BluetoothGattServer(context, iGatt,transport); in openGattServer()
|
D | BluetoothDevice.java | 1431 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in connectGatt() local 1432 if (iGatt == null) { in connectGatt() 1436 BluetoothGatt gatt = new BluetoothGatt(context, iGatt, this, transport); in connectGatt()
|
D | BluetoothGattServer.java | 310 /*package*/ BluetoothGattServer(Context context, IBluetoothGatt iGatt, int transport) { in BluetoothGattServer() argument 312 mService = iGatt; in BluetoothGattServer()
|
D | BluetoothAdapter.java | 1695 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in startLeScan() local 1696 if (iGatt == null) { in startLeScan()
|
D | BluetoothGatt.java | 611 /*package*/ BluetoothGatt(Context context, IBluetoothGatt iGatt, BluetoothDevice device, in BluetoothGatt() argument 614 mService = iGatt; in BluetoothGatt()
|