Searched refs:locusIds (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/core/java/android/content/pm/ |
D | ShortcutQueryWrapper.java | 143 List<LocusId> locusIds = null; in ShortcutQueryWrapper() local 145 locusIds = new ArrayList<>(); in ShortcutQueryWrapper() 146 in.readParcelableList(locusIds, LocusId.class.getClassLoader()); in ShortcutQueryWrapper() 155 this.mLocusIds = locusIds; in ShortcutQueryWrapper()
|
D | ShortcutServiceInternal.java | 50 @Nullable List<LocusId> locusIds, @Nullable ComponentName componentName, in getShortcuts() argument
|
D | LauncherApps.java | 518 public ShortcutQuery setLocusIds(@Nullable List<LocusId> locusIds) { in setLocusIds() argument 519 mLocusIds = locusIds; in setLocusIds()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | LauncherAppsService.java | 832 final List<LocusId> locusIds = query.getLocusIds(); in getShortcuts() local 839 if (locusIds != null && packageName == null) { in getShortcuts() 850 callingPackage, changedSince, packageName, shortcutIds, locusIds, in getShortcuts() 1377 final List<LocusId> locusIds = query.getLocusIds(); in filterShortcutsByQuery() local 1408 if (locusIds != null && !locusIds.contains(si.getLocusId())) { in filterShortcutsByQuery()
|
D | ShortcutService.java | 3125 @Nullable List<LocusId> locusIds, @Nullable ComponentName componentName, in getShortcuts() argument 3154 callingPackage, packageName, shortcutIds, locusIds, changedSince, in getShortcuts() 3159 final List<LocusId> locusIdsF = locusIds; in getShortcuts() 3174 @Nullable List<LocusId> locusIds, long changedSince, in getShortcutsInnerLocked() argument 3201 final Predicate<ShortcutInfo> filter = getFilterFromQuery(ids, locusIds, changedSince, in getShortcutsInnerLocked() 3220 @Nullable List<LocusId> locusIds, long changedSince, in getFilterFromQuery() argument 3223 final ArraySet<LocusId> locIds = locusIds == null ? null in getFilterFromQuery() 3224 : new ArraySet<>(locusIds); in getFilterFromQuery()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
D | BaseShortcutManagerTest.java | 2368 String packageName, List<String> shortcutIds, List<LocusId> locusIds, 2374 q.setLocusIds(locusIds);
|