Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/am/
DActivityStarter.java147 private final ActivityStackSupervisor mSupervisor; field in ActivityStarter
251 mSupervisor = supervisor; in ActivityStarter()
252 mInterceptor = new ActivityStartInterceptor(mService, mSupervisor); in ActivityStarter()
323 sourceRecord = mSupervisor.isInAnyStackLocked(resultTo); in startActivity()
431 boolean abort = !mSupervisor.checkStartAnyActivityPermission(intent, aInfo, resultWho, in startActivity()
498 rInfo = mSupervisor.resolveIntent(intent, resolvedType, userId); in startActivity()
499 aInfo = mSupervisor.resolveActivity(intent, rInfo, startFlags, in startActivity()
505 + (container == null ? (mSupervisor.mFocusedStack == null ? in startActivity()
506 DEFAULT_DISPLAY : mSupervisor.mFocusedStack.mDisplayId) : in startActivity()
524 aInfo = mSupervisor.resolveActivity(intent, rInfo, startFlags, null /*profilerInfo*/); in startActivity()
[all …]
DActivityStartInterceptor.java57 private final ActivityStackSupervisor mSupervisor; field in ActivityStartInterceptor
85 mSupervisor = supervisor; in ActivityStartInterceptor()
138 mRInfo = mSupervisor.resolveIntent(mIntent, mResolvedType, parent.id); in interceptQuietProfileIfNeeded()
139 mAInfo = mSupervisor.resolveActivity(mIntent, mRInfo, mStartFlags, null /*profilerInfo*/); in interceptQuietProfileIfNeeded()
161 mRInfo = mSupervisor.resolveIntent(mIntent, mResolvedType, parent.id); in interceptSuspendPackageIfNeed()
163 mRInfo = mSupervisor.resolveIntent(mIntent, mResolvedType, mUserId); in interceptSuspendPackageIfNeed()
165 mAInfo = mSupervisor.resolveActivity(mIntent, mRInfo, mStartFlags, null /*profilerInfo*/); in interceptSuspendPackageIfNeed()
190 ActivityRecord homeActivityRecord = mSupervisor.getHomeActivity(); in interceptWorkProfileChallengeIfNeeded()
198 mRInfo = mSupervisor.resolveIntent(mIntent, mResolvedType, parent.id); in interceptWorkProfileChallengeIfNeeded()
199 mAInfo = mSupervisor.resolveActivity(mIntent, mRInfo, mStartFlags, null /*profilerInfo*/); in interceptWorkProfileChallengeIfNeeded()
DActivityMetricsLogger.java65 private final ActivityStackSupervisor mSupervisor; field in ActivityMetricsLogger
91 mSupervisor = supervisor; in ActivityMetricsLogger()
106 ActivityStack stack = mSupervisor.getStack(DOCKED_STACK_ID); in logWindowState()
112 stack = mSupervisor.getFocusedStack(); in logWindowState()
114 stack = mSupervisor.findStackBehind(stack); in logWindowState()
151 ? mSupervisor.mService.mProcessNames.get(launchedActivity.processName, in notifyActivityLaunched()