Searched refs:mApps (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DContextMap.java107 List<App> mApps = new ArrayList<App>(); field in class:ContextMap
116 synchronized (mApps) {
117 mApps.add(new App(uuid, callback));
125 synchronized (mApps) {
126 Iterator<App> i = mApps.iterator();
170 Iterator<App> i = mApps.iterator();
183 Iterator<App> i = mApps.iterator();
262 synchronized (mApps) {
263 Iterator<App> i = mApps.iterator();
282 b.append("\nEntries: " + mApps
[all...]
/packages/apps/Settings/src/com/android/settings/applications/
H A DAppOpsCategory.java121 List<AppOpEntry> mApps; field in class:AppOpsCategory.AppListLoader
148 mApps = apps;
172 if (mApps != null) {
175 deliverResult(mApps);
187 if (takeContentChanged() || mApps == null || configChange) {
224 if (mApps != null) {
225 onReleaseResources(mApps);
226 mApps = null;
H A DAppOpsState.java53 List<AppOpEntry> mApps; field in class:AppOpsState
/packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
H A DHealthService.java64 private Map <BluetoothHealthAppConfiguration, AppInfo> mApps; field in class:HealthService
89 mApps = Collections.synchronizedMap(new HashMap<BluetoothHealthAppConfiguration,
114 = mApps.entrySet().iterator();
137 if(mApps != null) {
138 mApps.clear();
156 AppInfo appInfo = mApps.get(appConfig);
169 mApps.remove(appConfig);
189 int appId = (mApps.get(appConfig)).mAppId;
201 int appId = (mApps.get(chan.mConfig)).mAppId;
240 AppInfo appInfo = mApps
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DAppsCustomizePagedView.java173 private ArrayList<ApplicationInfo> mApps; field in class:AppsCustomizePagedView
250 mApps = new ArrayList<ApplicationInfo>();
306 int numApps = mApps.size();
332 if (index < mApps.size()) {
337 return mNumAppsPages + ((index - mApps.size()) / numItemsPerPage);
350 mNumAppsPages = (int) Math.ceil((float) mApps.size() / (mCellCountX * mCellCountY));
436 if (!mApps.isEmpty() && !mWidgets.isEmpty()) {
1027 int endIndex = Math.min(startIndex + numCells, mApps.size());
1034 ApplicationInfo info = mApps.get(i);
1532 * We should call thise method whenever the core data changes (mApps, mWidget
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DAppsCustomizePagedView.java171 private ArrayList<AppInfo> mApps; field in class:AppsCustomizePagedView
249 mApps = new ArrayList<AppInfo>();
311 int numApps = mApps.size();
339 if (index < mApps.size()) {
344 return (index - mApps.size()) / numItemsPerPage;
357 mNumAppsPages = (int) Math.ceil((float) mApps.size() / (mCellCountX * mCellCountY));
422 if ((DISABLE_ALL_APPS || !mApps.isEmpty()) && !mWidgets.isEmpty()) {
996 int endIndex = Math.min(startIndex + numCells, mApps.size());
1003 AppInfo info = mApps.get(i);
1507 * We should call thise method whenever the core data changes (mApps, mWidget
[all...]

Completed in 174 milliseconds