Searched refs:StartItem (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/services/java/com/android/server/am/ |
D | ServiceRecord.java | 105 static class StartItem { class in ServiceRecord 118 StartItem(ServiceRecord _sr, boolean _taskRemoved, int _id, Intent _intent, in StartItem() method in ServiceRecord.StartItem 156 final ArrayList<StartItem> deliveredStarts = new ArrayList<StartItem>(); 158 final ArrayList<StartItem> pendingStarts = new ArrayList<StartItem>(); 161 void dumpStartList(PrintWriter pw, String prefix, List<StartItem> list, long now) { in dumpStartList() 164 StartItem si = list.get(i); in dumpStartList() 329 public StartItem findDeliveredStart(int id, boolean remove) { in findDeliveredStart() 332 StartItem si = deliveredStarts.get(i); in findDeliveredStart()
|
D | ActiveServices.java | 245 r.pendingStarts.add(new ServiceRecord.StartItem(r, false, r.makeNextStartId(), in startServiceLocked() 333 ServiceRecord.StartItem si = r.findDeliveredStart(startId, false); in stopServiceTokenLocked() 336 ServiceRecord.StartItem cur = r.deliveredStarts.remove(0); in stopServiceTokenLocked() 856 ServiceRecord.StartItem si = r.deliveredStarts.get(i); in scheduleServiceRestartLocked() 1116 r.pendingStarts.add(new ServiceRecord.StartItem(r, false, r.makeNextStartId(), in realStartServiceLocked() 1132 ServiceRecord.StartItem si = r.pendingStarts.remove(0); in sendServiceArgsLocked() 1396 ServiceRecord.StartItem si = r.findDeliveredStart(startId, false); in serviceDoneExecutingLocked() 1578 sr.pendingStarts.add(new ServiceRecord.StartItem(sr, true, in cleanUpRemovedTaskLocked()
|