Home | History | Annotate | Download | only in nfc

Lines Matching refs:resolveInfo

33 import android.content.pm.ResolveInfo;
160 List<ResolveInfo> activities = packageManager.queryIntentActivities(intent, 0);
169 List<ResolveInfo> activities = packageManager.queryIntentActivities(intentToStart, 0);
364 ArrayList<ResolveInfo> matches = new ArrayList<ResolveInfo>();
371 isComponentEnabled(mPackageManager, info.resolveInfo)) {
373 if (!matches.contains(info.resolveInfo)) {
374 matches.add(info.resolveInfo);
381 ResolveInfo info = matches.get(0);
446 static boolean isComponentEnabled(PackageManager pm, ResolveInfo info) {