Home
last modified time | relevance | path

Searched refs:appScanStats (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
DContextMap.java76 public AppScanStats appScanStats; field in ContextMap.App
113 App(UUID uuid, C callback, T info, String name, AppScanStats appScanStats) { in App() argument
118 this.appScanStats = appScanStats; in App()
184 AppScanStats appScanStats = mAppScanStats.get(appUid); in add() local
185 if (appScanStats == null) { in add()
186 appScanStats = new AppScanStats(appName, workSource, this, service); in add()
187 mAppScanStats.put(appUid, appScanStats); in add()
189 App app = new App(uuid, callback, info, appName, appScanStats); in add()
191 appScanStats.isRegistered = true; in add()
206 entry.appScanStats.isRegistered = false; in remove()
[all …]
DGattService.java1025 app.appScanStats.addResult(client.scannerId); in onScanResult()