Searched defs:isSystemCaller (Results 1 - 2 of 2) sorted by relevance
/frameworks/base/services/core/java/com/android/server/am/ |
H A D | LockTaskController.java | 363 * @param isSystemCaller indicates whether this request comes from the system via 374 void stopLockTaskMode(@Nullable TaskRecord task, boolean isSystemCaller, int callingUid) { argument 379 if (isSystemCaller) { 383 Slog.e(TAG_LOCKTASK, "Attempted to stop LockTask with isSystemCaller=true"); 511 * @param isSystemCaller indicates whether this request was initiated by the system via 517 void startLockTaskMode(@NonNull TaskRecord task, boolean isSystemCaller, int callingUid) { argument 518 if (!isSystemCaller) { 522 // app pinning request. We will come back here with isSystemCaller true. 535 isSystemCaller ? "Locking pinned" : "Locking fully"); 536 setLockTaskMode(task, isSystemCaller [all...] |
H A D | ActivityManagerService.java | 11672 private void startLockTaskModeLocked(@Nullable TaskRecord task, boolean isSystemCaller) { argument 11683 // {@code isSystemCaller} is used to distinguish whether this request is initiated by the 11695 mLockTaskController.startLockTaskMode(task, isSystemCaller, callingUid); 11708 startLockTaskModeLocked(r.getTask(), false /* isSystemCaller */); 11723 startLockTaskModeLocked(task, true /* isSystemCaller */); 11737 stopLockTaskModeInternal(r.getTask(), false /* isSystemCaller */); 11748 stopLockTaskModeInternal(null, true /* isSystemCaller */); 11751 private void stopLockTaskModeInternal(@Nullable TaskRecord task, boolean isSystemCaller) { argument 11756 mLockTaskController.stopLockTaskMode(task, isSystemCaller, callingUid); [all...] |
Completed in 49 milliseconds