Loading services/core/java/com/android/server/am/ActivityManagerService.java +13 −0 Original line number Diff line number Diff line Loading @@ -5446,6 +5446,19 @@ public class ActivityManagerService extends IActivityManager.Stub intent = new Intent(Intent.ACTION_MAIN); } try { if (allowlistToken != null) { final int callingUid = Binder.getCallingUid(); final String packageName; final long token = Binder.clearCallingIdentity(); try { packageName = AppGlobals.getPackageManager().getNameForUid(callingUid); } finally { Binder.restoreCallingIdentity(token); } Slog.wtf(TAG, "Send a non-null allowlistToken to a non-PI target." + " Calling package: " + packageName + "; intent: " + intent + "; options: " + options); } target.send(code, intent, resolvedType, allowlistToken, null, requiredPermission, options); } catch (RemoteException e) { Loading Loading
services/core/java/com/android/server/am/ActivityManagerService.java +13 −0 Original line number Diff line number Diff line Loading @@ -5446,6 +5446,19 @@ public class ActivityManagerService extends IActivityManager.Stub intent = new Intent(Intent.ACTION_MAIN); } try { if (allowlistToken != null) { final int callingUid = Binder.getCallingUid(); final String packageName; final long token = Binder.clearCallingIdentity(); try { packageName = AppGlobals.getPackageManager().getNameForUid(callingUid); } finally { Binder.restoreCallingIdentity(token); } Slog.wtf(TAG, "Send a non-null allowlistToken to a non-PI target." + " Calling package: " + packageName + "; intent: " + intent + "; options: " + options); } target.send(code, intent, resolvedType, allowlistToken, null, requiredPermission, options); } catch (RemoteException e) { Loading