Home
last modified time | relevance | path

Searched refs:rci (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/com/android/internal/app/
DResolverListController.java147 final ResolverActivity.ResolvedComponentInfo rci = into.get(j); in addResolveListDedupe() local
148 if (isSameResolvedComponent(newInfo, rci)) { in addResolveListDedupe()
150 rci.add(intent, newInfo); in addResolveListDedupe()
157 final ResolverActivity.ResolvedComponentInfo rci = in addResolveListDedupe() local
159 rci.setPinned(isComponentPinned(name)); in addResolveListDedupe()
160 into.add(rci); in addResolveListDedupe()
DResolverRankerServiceResolverComparator.java492 static boolean isPersistentProcess(ResolvedComponentInfo rci) { in isPersistentProcess() argument
493 if (rci != null && rci.getCount() > 0) { in isPersistentProcess()
494 return (rci.getResolveInfoAt(0).activityInfo.applicationInfo.flags & in isPersistentProcess()
DResolverActivity.java1897 for (ResolvedComponentInfo rci : sortedComponents) {
1898 final ResolveInfo ri = rci.getResolveInfoAt(0);
1903 addResolveInfoWithAlternates(rci, pg.getSubLabel(), pg.getLabel());
1950 private void addResolveInfoWithAlternates(ResolvedComponentInfo rci,
1952 final int count = rci.getCount();
1953 final Intent intent = rci.getIntentAt(0);
1954 final ResolveInfo add = rci.getResolveInfoAt(0);
1958 dri.setPinned(rci.isPinned());
1959 if (rci.isPinned()) {
1960 Log.i(TAG, "Pinned item: " + rci.name);
[all …]