Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DBackgroundLaunchProcessController.java66 private @Nullable IntArray mBoundClientUids; field in BackgroundLaunchProcessController
172 if (mBoundClientUids != null) { in isBoundByForegroundUid()
173 for (int i = mBoundClientUids.size() - 1; i >= 0; i--) { in isBoundByForegroundUid()
174 if (mUidHasActiveVisibleWindowPredicate.test(mBoundClientUids.get(i))) { in isBoundByForegroundUid()
186 mBoundClientUids = null; in setBoundClientUids()
189 if (mBoundClientUids == null) { in setBoundClientUids()
190 mBoundClientUids = new IntArray(); in setBoundClientUids()
192 mBoundClientUids.clear(); in setBoundClientUids()
195 mBoundClientUids.add(boundClientUids.valueAt(i)); in setBoundClientUids()
261 if (mBoundClientUids != null && mBoundClientUids.size() > 0) { in dump()
[all …]
/aosp12/frameworks/base/services/core/java/com/android/server/am/
H A DProcessServiceRecord.java107 private ArraySet<Integer> mBoundClientUids = new ArraySet<>(); field in ProcessServiceRecord
327 mBoundClientUids.add(clientUid); in addBoundClientUid()
328 mApp.getWindowProcessController().setBoundClientUids(mBoundClientUids); in addBoundClientUid()
350 mBoundClientUids = boundClientUids; in updateBoundClientUids()
351 mApp.getWindowProcessController().setBoundClientUids(mBoundClientUids); in updateBoundClientUids()
362 mBoundClientUids.add(c.get(i).clientUid); in addBoundClientUidsOfNewService()
365 mApp.getWindowProcessController().setBoundClientUids(mBoundClientUids); in addBoundClientUidsOfNewService()
369 mBoundClientUids.clear(); in clearBoundClientUids()
370 mApp.getWindowProcessController().setBoundClientUids(mBoundClientUids); in clearBoundClientUids()