summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrabir Pradhan <prabirmsp@google.com>2024-04-12 18:23:31 +0000
committerPrabir Pradhan <prabirmsp@google.com>2024-04-17 23:46:13 +0000
commit5fbf6b2a0f6d156dc5b3d0687833782fd161db55 (patch)
tree999331cc896f6e59afc6234ae9413c6274dbbed3
parent277c8f7a23f5e0cfe586e303899dfc201bee8702 (diff)
downloadnative-5fbf6b2a0f6d156dc5b3d0687833782fd161db55.tar.gz
IPackageManagerNative: Add getPackageUid
Bug: 330360505 Test: manual Change-Id: I669976dde4c53932745a98df7165593969e0c436
-rw-r--r--libs/binder/aidl/android/content/pm/IPackageManagerNative.aidl12
1 files changed, 12 insertions, 0 deletions
diff --git a/libs/binder/aidl/android/content/pm/IPackageManagerNative.aidl b/libs/binder/aidl/android/content/pm/IPackageManagerNative.aidl
index f8a8843309..3ddfefa311 100644
--- a/libs/binder/aidl/android/content/pm/IPackageManagerNative.aidl
+++ b/libs/binder/aidl/android/content/pm/IPackageManagerNative.aidl
@@ -43,6 +43,18 @@ interface IPackageManagerNative {
@utf8InCpp String[] getNamesForUids(in int[] uids);
/**
+ * Return the UID associated with the given package name.
+ * Note that the same package will have different UIDs under different UserHandle on
+ * the same device.
+ * @param packageName The full name (i.e. com.google.apps.contacts) of the desired package.
+ * @param flags Additional option flags to modify the data returned.
+ * @param userId The user handle identifier to look up the package under.
+ * @return Returns an integer UID who owns the given package name, or -1 if no such package is
+ * available to the caller.
+ */
+ int getPackageUid(in @utf8InCpp String packageName, in long flags, in int userId);
+
+ /**
* Returns the name of the installer (a package) which installed the named
* package. Preloaded packages return the string "preload". Sideloaded packages
* return an empty string. Unknown or unknowable are returned as empty strings.