Searched refs:clist (Results 1 – 2 of 2) sorted by relevance
496 ArrayList<ConnectionRecord> clist = s.connections.get(binder); in bindServiceLocked() local497 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 …]
12848 ArrayList<ConnectionRecord> clist = kt.next(); in computeOomAdjLocked() local12849 for (int i=0; i<clist.size() && adj > ProcessList.FOREGROUND_APP_ADJ; i++) { in computeOomAdjLocked()12852 ConnectionRecord cr = clist.get(i); in computeOomAdjLocked()