Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DBackgroundLaunchProcessController.java183 void setBoundClientUids(ArraySet<Integer> boundClientUids) { in setBoundClientUids() argument
185 if (boundClientUids == null || boundClientUids.isEmpty()) { in setBoundClientUids()
194 for (int i = boundClientUids.size() - 1; i >= 0; i--) { in setBoundClientUids()
195 mBoundClientUids.add(boundClientUids.valueAt(i)); in setBoundClientUids()
H A DWindowProcessController.java541 public void setBoundClientUids(ArraySet<Integer> boundClientUids) { in setBoundClientUids() argument
542 mBgLaunchController.setBoundClientUids(boundClientUids); in setBoundClientUids()
/aosp12/frameworks/base/services/core/java/com/android/server/am/
H A DProcessServiceRecord.java337 final ArraySet<Integer> boundClientUids = new ArraySet<>(); in updateBoundClientUids() local
346 boundClientUids.add(c.get(i).clientUid); in updateBoundClientUids()
350 mBoundClientUids = boundClientUids; in updateBoundClientUids()