Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DShortcutLauncher.java61 @UserIdInt int ownerUserId, @NonNull String packageName, in ShortcutLauncher() argument
65 mOwnerUserId = ownerUserId; in ShortcutLauncher()
69 @UserIdInt int ownerUserId, @NonNull String packageName, in ShortcutLauncher() argument
71 this(shortcutUser, ownerUserId, packageName, launcherUserId, null); in ShortcutLauncher()
186 int ownerUserId, boolean fromBackup) throws IOException, XmlPullParserException { in loadFromXml() argument
192 fromBackup ? ownerUserId in loadFromXml()
193 : ShortcutService.parseIntAttribute(parser, ATTR_LAUNCHER_USER_ID, ownerUserId); in loadFromXml()
216 final int packageUserId = fromBackup ? ownerUserId in loadFromXml()
218 ATTR_PACKAGE_USER_ID, ownerUserId); in loadFromXml()
DShortcutService.java985 @NonNull String packageName, @UserIdInt int ownerUserId, in getLauncherShortcutsLocked() argument
987 return getUserShortcutsLocked(ownerUserId) in getLauncherShortcutsLocked()
1994 void checkPackageChanges(@UserIdInt int ownerUserId) { in checkPackageChanges() argument
1996 Slog.d(TAG, "checkPackageChanges() ownerUserId=" + ownerUserId); in checkPackageChanges()
2001 final ShortcutUser user = getUserShortcutsLocked(ownerUserId); in checkPackageChanges()
2011 getUserShortcutsLocked(ownerUserId).handlePackageUpdated( in checkPackageChanges()
2020 cleanUpPackageLocked(pu.packageName, ownerUserId, pu.userId); in checkPackageChanges()
DUserManagerService.java1679 String ownerUserId = parser.getAttributeValue(null, ATTR_ID); in readUserListLP() local
1680 if (ownerUserId != null) { in readUserListLP()
1681 mGlobalRestrictionOwnerUserId = Integer.parseInt(ownerUserId); in readUserListLP()