Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/bluetooth/
DBluetoothManager.java136 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in getConnectedDevices() local
137 if (iGatt == null) return connectedDevices; in getConnectedDevices()
139 connectedDevices = iGatt.getDevicesMatchingConnectionStates( in getConnectedDevices()
178 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in getDevicesMatchingConnectionStates() local
179 if (iGatt == null) return devices; in getDevicesMatchingConnectionStates()
180 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(iGatt, transport); in openGattServer()
DBluetoothDevice.java2161 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in connectGatt() local
2162 if (iGatt == null) { in connectGatt()
2166 BluetoothGatt gatt = new BluetoothGatt(iGatt, this, transport, opportunistic, phy); in connectGatt()
DBluetoothGattServer.java379 /*package*/ BluetoothGattServer(IBluetoothGatt iGatt, int transport) { in BluetoothGattServer() argument
380 mService = iGatt; in BluetoothGattServer()
DBluetoothAdapter.java1951 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in isHardwareTrackingFiltersAvailable() local
1952 if (iGatt == null) { in isHardwareTrackingFiltersAvailable()
1956 return (iGatt.numHwTrackFiltersAvailable() != 0); in isHardwareTrackingFiltersAvailable()
2952 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in startLeScan() local
2953 if (iGatt == null) { in startLeScan()
DBluetoothGatt.java693 /*package*/ BluetoothGatt(IBluetoothGatt iGatt, BluetoothDevice device, in BluetoothGatt() argument
695 mService = iGatt; in BluetoothGatt()