/aosp14/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | MirrorActiveUids.java | 19 import static android.app.ActivityManager.PROCESS_STATE_NONEXISTENT; 54 return mUidStates.get(uid, PROCESS_STATE_NONEXISTENT); in getUidState()
|
H A D | WindowProcessController.java | 20 import static android.app.ActivityManager.PROCESS_STATE_NONEXISTENT; 142 private volatile int mCurProcState = PROCESS_STATE_NONEXISTENT; 144 private volatile int mRepProcState = PROCESS_STATE_NONEXISTENT;
|
H A D | ActivityMetricsLogger.java | 3 import static android.app.ActivityManager.PROCESS_STATE_NONEXISTENT; 690 processState = PROCESS_STATE_NONEXISTENT; in notifyActivityLaunched()
|
/aosp14/frameworks/base/native/android/ |
H A D | activity_manager.cpp | 66 if (procState == ActivityManager::PROCESS_STATE_NONEXISTENT) { in procStateToImportance() 91 return ActivityManager::PROCESS_STATE_NONEXISTENT; in importanceToProcState()
|
/aosp14/frameworks/base/services/core/java/com/android/server/am/ |
H A D | ProcessStateRecord.java | 20 import static android.app.ActivityManager.PROCESS_STATE_NONEXISTENT; 119 private int mCurProcState = PROCESS_STATE_NONEXISTENT; 125 private int mRepProcState = PROCESS_STATE_NONEXISTENT; 131 private int mCurRawProcState = PROCESS_STATE_NONEXISTENT; 137 private int mSetProcState = PROCESS_STATE_NONEXISTENT; 1176 mCurProcState = mCurRawProcState = mSetProcState = PROCESS_STATE_NONEXISTENT; in onCleanupApplicationRecordLSP()
|
H A D | BaseAppStateDurationsTracker.java | 20 import static android.app.ActivityManager.PROCESS_STATE_NONEXISTENT; 72 onUidProcStateChanged(uid, PROCESS_STATE_NONEXISTENT);
|
H A D | ProcessProfileRecord.java | 19 import static android.app.ActivityManager.PROCESS_STATE_NONEXISTENT; 126 private int mPssProcState = PROCESS_STATE_NONEXISTENT; 549 if (procState != PROCESS_STATE_NONEXISTENT) { in setProcessTrackerState()
|
H A D | UidObserverController.java | 19 import static android.app.ActivityManager.PROCESS_STATE_NONEXISTENT; 399 doReport = item.procState != PROCESS_STATE_NONEXISTENT; in dispatchUidsChangedForObserver()
|
H A D | UidRecord.java | 48 private int mSetProcState = ActivityManager.PROCESS_STATE_NONEXISTENT;
|
H A D | OomAdjuster.java | 38 import static android.app.ActivityManager.PROCESS_STATE_NONEXISTENT; 549 if (uidRec.getCurProcState() != PROCESS_STATE_NONEXISTENT in performUpdateOomAdjLSP() 1460 if (uidRec.getCurProcState() != PROCESS_STATE_NONEXISTENT) { in updateUidsLSP() 1494 if (uidRec.getSetProcState() != PROCESS_STATE_NONEXISTENT) { in updateUidsLSP() 1512 || uidRec.getSetProcState() == PROCESS_STATE_NONEXISTENT) { in updateUidsLSP() 3139 if (state.getSetProcState() == PROCESS_STATE_NONEXISTENT in applyOomAdjLSP()
|
H A D | ServiceRecord.java | 19 import static android.app.ActivityManager.PROCESS_STATE_NONEXISTENT; 1033 ? app.mState.getCurProcState() : PROCESS_STATE_NONEXISTENT; in updateProcessStateOnRequest()
|
H A D | ProcessList.java | 21 import static android.app.ActivityManager.PROCESS_STATE_NONEXISTENT; 1200 case ActivityManager.PROCESS_STATE_NONEXISTENT: in makeProcStateProtoEnum() 1201 return AppProtoEnums.PROCESS_STATE_NONEXISTENT; in makeProcStateProtoEnum() 3278 mService.noteUidProcessState(uid, ActivityManager.PROCESS_STATE_NONEXISTENT, 4970 return uidRec == null ? PROCESS_STATE_NONEXISTENT : uidRec.getCurProcState();
|
H A D | AppProfiler.java | 19 import static android.app.ActivityManager.PROCESS_STATE_NONEXISTENT; 1081 || profile.getSetProcState() == PROCESS_STATE_NONEXISTENT) { in requestPssAllProcsLPr()
|
H A D | BroadcastQueueImpl.java | 1502 r.curAppLastProcessState = ActivityManager.PROCESS_STATE_NONEXISTENT; in processNextBroadcastLocked()
|
H A D | BroadcastQueueModernImpl.java | 1999 receiverProcessState = ActivityManager.PROCESS_STATE_NONEXISTENT; in logBroadcastDeliveryEventReported()
|
H A D | ContentProviderHelper.java | 554 callingProcessState, ActivityManager.PROCESS_STATE_NONEXISTENT); in getContentProviderImpl()
|
/aosp14/frameworks/base/services/core/java/com/android/server/pm/permission/ |
H A D | OneTimePermissionUserManager.java | 185 && procState != ActivityManager.PROCESS_STATE_NONEXISTENT) { 246 if (procState == ActivityManager.PROCESS_STATE_NONEXISTENT) { in getStateFromProcState()
|
/aosp14/frameworks/base/services/core/java/com/android/server/appop/ |
H A D | AppOpsUidStateTrackerImpl.java | 23 import static android.app.ActivityManager.PROCESS_STATE_NONEXISTENT; 234 if (procState == PROCESS_STATE_NONEXISTENT) { in updateUidProcState()
|
/aosp14/frameworks/base/core/java/android/app/ |
H A D | ActivityManager.java | 771 public static final int PROCESS_STATE_NONEXISTENT = ProcessStateEnum.NONEXISTENT; field in ActivityManager 1055 case PROCESS_STATE_NONEXISTENT: in processStateAmToProto() 1056 return AppProtoEnums.PROCESS_STATE_NONEXISTENT; in processStateAmToProto() 1068 public static final int MAX_PROCESS_STATE = PROCESS_STATE_NONEXISTENT; 3647 if (procState == PROCESS_STATE_NONEXISTENT) { in procStateToImportance() 3706 return PROCESS_STATE_NONEXISTENT; in importanceToProcState() 5543 case ActivityManager.PROCESS_STATE_NONEXISTENT: in procStateToString()
|
/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/am/ |
H A D | ActivityManagerServiceTest.java | 25 import static android.app.ActivityManager.PROCESS_STATE_NONEXISTENT; 585 uidRec.setSetProcState(PROCESS_STATE_NONEXISTENT); in testBlockStateForUid() 643 ActivityManager.PROCESS_STATE_NONEXISTENT, in testDispatchUids_dispatchNeededChanges()
|
H A D | MockingOomAdjusterTests.java | 33 import static android.app.ActivityManager.PROCESS_STATE_NONEXISTENT; 2474 app.mState.setSetProcState(PROCESS_STATE_NONEXISTENT); in testUpdateOomAdj_DoAll_Service_KeepWarmingList() 2483 app.mState.setSetProcState(PROCESS_STATE_NONEXISTENT); in testUpdateOomAdj_DoAll_Service_KeepWarmingList() 2492 app.mState.setSetProcState(PROCESS_STATE_NONEXISTENT); in testUpdateOomAdj_DoAll_Service_KeepWarmingList() 2511 app.mState.setSetProcState(PROCESS_STATE_NONEXISTENT); in testUpdateOomAdj_DoAll_Service_KeepWarmingList() 2566 PROCESS_STATE_NONEXISTENT, PROCESS_STATE_NONEXISTENT, in makeDefaultProcessRecord() 2567 PROCESS_STATE_NONEXISTENT, PROCESS_STATE_NONEXISTENT, in makeDefaultProcessRecord()
|
/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/appop/ |
H A D | AppOpsUidStateTrackerTest.java | 864 private int mProcState = ActivityManager.PROCESS_STATE_NONEXISTENT; 912 mProcState = ActivityManager.PROCESS_STATE_NONEXISTENT; in nonExistentState()
|
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/power/stats/ |
H A D | BatteryStatsBackgroundStatsTest.java | 101 bi.noteUidProcessStateLocked(UID, ActivityManager.PROCESS_STATE_NONEXISTENT); in testBgTimeBase()
|
/aosp14/frameworks/base/services/core/java/com/android/server/power/ |
H A D | PowerManagerService.java | 1611 state.mProcState = ActivityManager.PROCESS_STATE_NONEXISTENT; 1793 state.mProcState == ActivityManager.PROCESS_STATE_NONEXISTENT) { 4134 state.mProcState = ActivityManager.PROCESS_STATE_NONEXISTENT; 4207 != ActivityManager.PROCESS_STATE_NONEXISTENT && 4216 state.mProcState != ActivityManager.PROCESS_STATE_NONEXISTENT && 4225 && state.mProcState != ActivityManager.PROCESS_STATE_NONEXISTENT 4240 && state.mProcState != ActivityManager.PROCESS_STATE_NONEXISTENT
|
/aosp14/frameworks/base/services/core/java/com/android/server/power/stats/ |
H A D | BatteryStatsImpl.java | 675 if (procState == Uid.PROCESS_STATE_NONEXISTENT) { in updateCpuTimesForAllUids() 7833 int mProcessState = Uid.PROCESS_STATE_NONEXISTENT; 9376 active |= (mProcessState != Uid.PROCESS_STATE_NONEXISTENT); in reset() 10491 if (mProcessState != Uid.PROCESS_STATE_NONEXISTENT) { in updateUidProcessStateLocked() 10494 if (uidRunningState != Uid.PROCESS_STATE_NONEXISTENT) { in updateUidProcessStateLocked() 16068 u.mProcessState = Uid.PROCESS_STATE_NONEXISTENT;
|