Home
last modified time | relevance | path

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

/frameworks/base/services/java/com/android/server/am/
DActiveServices.java496 ArrayList<ConnectionRecord> clist = s.connections.get(binder); in bindServiceLocked() local
497 if (clist == null) { in bindServiceLocked()
498 clist = new ArrayList<ConnectionRecord>(); in bindServiceLocked()
499 s.connections.put(binder, clist); in bindServiceLocked()
501 clist.add(c); in bindServiceLocked()
513 clist = mServiceConnections.get(binder); in bindServiceLocked()
514 if (clist == null) { in bindServiceLocked()
515 clist = new ArrayList<ConnectionRecord>(); in bindServiceLocked()
516 mServiceConnections.put(binder, clist); in bindServiceLocked()
518 clist.add(c); in bindServiceLocked()
[all …]
DActivityManagerService.java12848 ArrayList<ConnectionRecord> clist = kt.next(); in computeOomAdjLocked() local
12849 for (int i=0; i<clist.size() && adj > ProcessList.FOREGROUND_APP_ADJ; i++) { in computeOomAdjLocked()
12852 ConnectionRecord cr = clist.get(i); in computeOomAdjLocked()