Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DBackgroundLaunchProcessController.java64 private @Nullable IntArray mBoundClientUids; field in BackgroundLaunchProcessController
169 if (mBoundClientUids != null) { in isBoundByForegroundUid()
170 for (int i = mBoundClientUids.size() - 1; i >= 0; i--) { in isBoundByForegroundUid()
171 if (mUidHasActiveVisibleWindowPredicate.test(mBoundClientUids.get(i))) { in isBoundByForegroundUid()
183 mBoundClientUids = null; in setBoundClientUids()
186 if (mBoundClientUids == null) { in setBoundClientUids()
187 mBoundClientUids = new IntArray(); in setBoundClientUids()
189 mBoundClientUids.clear(); in setBoundClientUids()
192 mBoundClientUids.add(boundClientUids.valueAt(i)); in setBoundClientUids()
258 if (mBoundClientUids != null && mBoundClientUids.size() > 0) { in dump()
[all …]
/frameworks/base/services/core/java/com/android/server/am/
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()