Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/am/
DActiveServices.java168 private ArrayList<ServiceRecord> mTmpCollectionResults = null; field in ActiveServices
3454 if (mTmpCollectionResults == null) { in collectPackageServicesLocked()
3455 mTmpCollectionResults = new ArrayList<>(); in collectPackageServicesLocked()
3457 mTmpCollectionResults.add(service); in collectPackageServicesLocked()
3467 if (mTmpCollectionResults != null) { in bringDownDisabledPackageServicesLocked()
3468 mTmpCollectionResults.clear(); in bringDownDisabledPackageServicesLocked()
3494 if (mTmpCollectionResults != null) { in bringDownDisabledPackageServicesLocked()
3495 for (int i = mTmpCollectionResults.size() - 1; i >= 0; i--) { in bringDownDisabledPackageServicesLocked()
3496 bringDownServiceLocked(mTmpCollectionResults.get(i)); in bringDownDisabledPackageServicesLocked()
3498 mTmpCollectionResults.clear(); in bringDownDisabledPackageServicesLocked()