Searched defs:launchDisplayId (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/app/
H A DActivityOptions.java164 private static final String KEY_LAUNCH_DISPLAY_ID = "android.activity.launchDisplayId";
1064 * @param launchDisplayId The id of the display where the activity should be launched.
1067 public ActivityOptions setLaunchDisplayId(int launchDisplayId) { argument
1068 mLaunchDisplayId = launchDisplayId;
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStackSupervisor.java1666 final int launchDisplayId = options.getLaunchDisplayId();
1667 if (launchDisplayId != INVALID_DISPLAY && !isCallerAllowedToLaunchOnDisplay(callingPid,
1668 callingUid, launchDisplayId, aInfo)) {
1671 + ", uid=" + callingUid + ") with launchDisplayId="
1672 + launchDisplayId;
1682 boolean isCallerAllowedToLaunchOnDisplay(int callingPid, int callingUid, int launchDisplayId, argument
1684 if (DEBUG_TASKS) Slog.d(TAG, "Launch on display check: displayId=" + launchDisplayId
1692 final ActivityDisplay activityDisplay = getActivityDisplayOrCreateLocked(launchDisplayId);

Completed in 83 milliseconds