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()
206 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in openGattServer() local
207 if (iGatt == null) { in openGattServer()
211 BluetoothGattServer mGattServer = new BluetoothGattServer(context, iGatt); in openGattServer()
DBluetoothAdapter.java487 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in getAdvScanData() local
488 if (iGatt == null) { in getAdvScanData()
494 mBluetoothAdvScanData = new BluetoothAdvScanData(iGatt, BluetoothAdvScanData.AD); in getAdvScanData()
532 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in startAdvertising() local
533 if (iGatt == null) { in startAdvertising()
544 iGatt.startAdvertising(mAdvertisingGattCallback.mLeHandle); in startAdvertising()
558 iGatt.registerClient(new ParcelUuid(uuid), wrapper); in startAdvertising()
581 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in stopAdvertising() local
582 if (iGatt == null) { in stopAdvertising()
1023 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt(); in isAdvertising() local
[all …]
DBluetoothDevice.java1221 IBluetoothGatt iGatt = managerService.getBluetoothGatt(); in connectGatt() local
1222 if (iGatt == null) { in connectGatt()
1226 BluetoothGatt gatt = new BluetoothGatt(context, iGatt, this); in connectGatt()
DBluetoothGattServer.java281 /*package*/ BluetoothGattServer(Context context, IBluetoothGatt iGatt) { in BluetoothGattServer() argument
283 mService = iGatt; in BluetoothGattServer()
DBluetoothGatt.java567 /*package*/ BluetoothGatt(Context context, IBluetoothGatt iGatt, BluetoothDevice device) { in BluetoothGatt() argument
569 mService = iGatt; in BluetoothGatt()