Home | History | Annotate | Download | only in pm

Lines Matching defs:packageUserId

106     public void pinShortcuts(@UserIdInt int packageUserId,
114 final PackageWithUser pu = PackageWithUser.of(packageUserId, packageName);
147 @UserIdInt int packageUserId) {
148 return mPinnedShortcuts.get(PackageWithUser.of(packageUserId, packageName));
151 boolean cleanUpPackage(String packageName, @UserIdInt int packageUserId) {
152 return mPinnedShortcuts.remove(PackageWithUser.of(packageUserId, packageName)) != null;
237 final int packageUserId = fromBackup ? ownerUserId
242 PackageWithUser.of(packageUserId, packageName), ids);
314 ArraySet<String> getAllPinnedShortcutsForTest(String packageName, int packageUserId) {
315 return new ArraySet<>(mPinnedShortcuts.get(PackageWithUser.of(packageUserId, packageName)));