Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/bluetooth/
DBluetoothManager.java150 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in getConnectedDevices() local
151 if (iGatt == null) return connectedDevices; in getConnectedDevices()
153 connectedDevices = iGatt.getDevicesMatchingConnectionStates( in getConnectedDevices()
192 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in getDevicesMatchingConnectionStates() local
193 if (iGatt == null) return devices; in getDevicesMatchingConnectionStates()
194 devices = iGatt.getDevicesMatchingConnectionStates(states); in getDevicesMatchingConnectionStates()
245 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in openGattServer() local
246 if (iGatt == null) { in openGattServer()
250 BluetoothGattServer mGattServer = new BluetoothGattServer(iGatt, transport); in openGattServer()
DBluetoothDevice.java2159 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in connectGatt() local
2160 if (iGatt == null) { in connectGatt()
2164 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.java2145 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in isHardwareTrackingFiltersAvailable() local
2146 if (iGatt == null) { in isHardwareTrackingFiltersAvailable()
2150 return (iGatt.numHwTrackFiltersAvailable() != 0); in isHardwareTrackingFiltersAvailable()
3180 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in startLeScan() local
3181 if (iGatt == null) { in startLeScan()
DBluetoothGatt.java693 /*package*/ BluetoothGatt(IBluetoothGatt iGatt, BluetoothDevice device, in BluetoothGatt() argument
695 mService = iGatt; in BluetoothGatt()