Home | History | Annotate | Download | only in hdp

Lines Matching defs:mApps

64     private Map <BluetoothHealthAppConfiguration, AppInfo> mApps;
89 mApps = Collections.synchronizedMap(new HashMap<BluetoothHealthAppConfiguration,
115 if (mApps != null) {
117 = mApps.entrySet().iterator();
140 if(mApps != null) {
141 mApps.clear();
159 AppInfo appInfo = mApps.get(appConfig);
172 mApps.remove(appConfig);
192 int appId = (mApps.get(appConfig)).mAppId;
204 int appId = (mApps.get(chan.mConfig)).mAppId;
243 AppInfo appInfo = mApps.get(appConfig);
245 mApps.remove(appConfig);
407 if (mApps.get(config) != null) {
411 mApps.put(config, new AppInfo(callback));
419 if (mApps.get(config) == null) {
515 IBluetoothHealthCallback callback = (mApps.get(config)).mCallback;
529 for (Entry<BluetoothHealthAppConfiguration, AppInfo> e : mApps.entrySet()) {
577 if (mApps.get(config) == null) {
608 IBluetoothHealthCallback callback = (mApps.get(config)).mCallback;
798 println(sb, "mApps:");
799 for (BluetoothHealthAppConfiguration conf : mApps.keySet()) {
800 println(sb, " " + conf + " : " + mApps.get(conf));