Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/app/procstats/
DProcessState.java140 private int mNumStartedServices; field in ProcessState
200 pnew.mNumStartedServices = mNumStartedServices; in clone()
326 return mActive || mNumActiveServices > 0 || mNumStartedServices > 0 in isInUse()
351 state = mNumStartedServices > 0 in setState()
427 + " to " + (mNumStartedServices+1), here); in incStartedServices()
432 mNumStartedServices++; in incStartedServices()
433 if (mNumStartedServices == 1 && mCurState == STATE_NOTHING) { in incStartedServices()
443 + " to " + (mNumStartedServices-1), here); in decStartedServices()
448 mNumStartedServices--; in decStartedServices()
449 if (mNumStartedServices == 0 && (mCurState%STATE_COUNT) == STATE_SERVICE_RESTARTING) { in decStartedServices()
[all …]