Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/gatt/
DContextMap.java259 App app = getById(appUid); in add()
318 App entry = getById(id); in addConnection()
363 public App getById(int id) { in getById() method in ContextMap
400 App temp = getById(id); in getAppScanStatsById()
572 return getById(appId); in getByConnId()
579 App entry = getById(id); in connIdByAddress()
DGattService.java1322 ContextMap<IBluetoothGattCallback, Void>.App app = mClientMap.getById(clientIf); in onConnected()
1343 ContextMap<IBluetoothGattCallback, Void>.App app = mClientMap.getById(clientIf); in onDisconnected()
1804 ContextMap<IBluetoothGattCallback, Void>.App app = mClientMap.getById(clientIf); in onReadRemoteRssi()
2832 ContextMap<IBluetoothGattServerCallback, Void>.App app = mServerMap.getById(serverIf); in onServiceAdded()
2863 ContextMap<IBluetoothGattServerCallback, Void>.App app = mServerMap.getById(serverIf); in onClientConnected()
2915 ContextMap<IBluetoothGattServerCallback, Void>.App app = mServerMap.getById(entry.serverIf); in onServerReadCharacteristic()
2946 ContextMap<IBluetoothGattServerCallback, Void>.App app = mServerMap.getById(entry.serverIf); in onServerReadDescriptor()
2987 ContextMap<IBluetoothGattServerCallback, Void>.App app = mServerMap.getById(entry.serverIf); in onServerWriteCharacteristic()
3029 ContextMap<IBluetoothGattServerCallback, Void>.App app = mServerMap.getById(entry.serverIf); in onServerWriteDescriptor()
3509 + mTransitionalScanHelper.getScannerMap().getById(appId).name); in dumpRegisterId()
[all …]
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/le_scan/
DTransitionalScanHelper.java379 mScannerMap.getById(client.scannerId); in onScanResultInternal()
702 mScannerMap.getById(scannerId); in onBatchScanReportsInternal()
787 ContextMap.App app = mScannerMap.getById(client.scannerId); in deliverBatchScan()
968 mScannerMap.getById(trackingInfo.getClientIf()); in onTrackAdvFoundLost()
1028 ContextMap.App app = mScannerMap.getById(scannerId); in onScanParamSetupCompleted()
1038 ContextMap<IScannerCallback, PendingIntentInfo>.App app = mScannerMap.getById(scannerId); in onScanManagerErrorCallback()
1174 ContextMap.App cbApp = mScannerMap.getById(scannerId); in startScan()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/le_scan/
DTransitionalScanHelperTest.java226 doReturn(mApp).when(mScannerMap).getById(scanClient.scannerId); in onBatchScanReportsInternal_deliverBatchScan()
321 doReturn(mApp).when(mScannerMap).getById(scanClient.scannerId); in onScanResult_remoteException_clientDied()
439 doReturn(app).when(mScannerMap).getById(scannerId); in onTrackAdvFoundLost()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/gatt/
DContextMapTest.java98 ContextMap.App contextMapById = contextMap.getById(appUid); in getByMethods()