Home | History | Annotate | Download | only in hdp

Lines Matching defs:AppInfo

64     private Map <BluetoothHealthAppConfiguration, AppInfo> mApps;
90 AppInfo>());
116 Iterator <Map.Entry<BluetoothHealthAppConfiguration,AppInfo>>it
119 Map.Entry<BluetoothHealthAppConfiguration,AppInfo> entry = it.next();
120 AppInfo appInfo = entry.getValue();
121 if (appInfo != null)
122 appInfo.cleanup();
159 AppInfo appInfo = mApps.get(appConfig);
160 if (appInfo == null) break;
171 appInfo.cleanup();
175 appInfo.mRcpObj = new BluetoothHealthDeathRecipient(HealthService.this,appConfig);
176 IBinder binder = appInfo.mCallback.asBinder();
178 binder.linkToDeath(appInfo.mRcpObj,0);
182 appInfo.mAppId = appId;
243 AppInfo appInfo = mApps.get(appConfig);
244 appInfo.cleanup();
411 mApps.put(config, new AppInfo(callback));
529 for (Entry<BluetoothHealthAppConfiguration, AppInfo> e : mApps.entrySet()) {
808 private static class AppInfo {
813 private AppInfo(IBluetoothHealthCallback callback) {