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.java155 private ArrayList<ServiceRecord> mTmpCollectionResults = null; field in ActiveServices
2421 if (mTmpCollectionResults == null) { in collectPackageServicesLocked()
2422 mTmpCollectionResults = new ArrayList<>(); in collectPackageServicesLocked()
2424 mTmpCollectionResults.add(service); in collectPackageServicesLocked()
2434 if (mTmpCollectionResults != null) { in bringDownDisabledPackageServicesLocked()
2435 mTmpCollectionResults.clear(); in bringDownDisabledPackageServicesLocked()
2455 if (mTmpCollectionResults != null) { in bringDownDisabledPackageServicesLocked()
2456 for (int i = mTmpCollectionResults.size() - 1; i >= 0; i--) { in bringDownDisabledPackageServicesLocked()
2457 bringDownServiceLocked(mTmpCollectionResults.get(i)); in bringDownDisabledPackageServicesLocked()
2459 mTmpCollectionResults.clear(); in bringDownDisabledPackageServicesLocked()