Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/bluetooth/
DBluetoothManager.java130 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()
DBluetoothDevice.java1431 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in connectGatt() local
1432 if (iGatt == null) { in connectGatt()
1436 BluetoothGatt gatt = new BluetoothGatt(context, iGatt, this, transport); in connectGatt()
DBluetoothGattServer.java310 /*package*/ BluetoothGattServer(Context context, IBluetoothGatt iGatt, int transport) { in BluetoothGattServer() argument
312 mService = iGatt; in BluetoothGattServer()
DBluetoothAdapter.java1695 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in startLeScan() local
1696 if (iGatt == null) { in startLeScan()
DBluetoothGatt.java611 /*package*/ BluetoothGatt(Context context, IBluetoothGatt iGatt, BluetoothDevice device, in BluetoothGatt() argument
614 mService = iGatt; in BluetoothGatt()