Searched refs:StartItem (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/services/core/java/com/android/server/am/ |
D | ServiceRecord.java | 115 static class StartItem { class in ServiceRecord 128 StartItem(ServiceRecord _sr, boolean _taskRemoved, int _id, Intent _intent, in StartItem() method in ServiceRecord.StartItem 166 final ArrayList<StartItem> deliveredStarts = new ArrayList<StartItem>(); 168 final ArrayList<StartItem> pendingStarts = new ArrayList<StartItem>(); 171 void dumpStartList(PrintWriter pw, String prefix, List<StartItem> list, long now) { in dumpStartList() 174 StartItem si = list.get(i); in dumpStartList() 395 public StartItem findDeliveredStart(int id, boolean remove) { in findDeliveredStart() 398 StartItem si = deliveredStarts.get(i); in findDeliveredStart()
|
D | ActiveServices.java | 345 r.pendingStarts.add(new ServiceRecord.StartItem(r, false, r.makeNextStartId(), in startServiceLocked() 536 ServiceRecord.StartItem si = r.findDeliveredStart(startId, false); in stopServiceTokenLocked() 539 ServiceRecord.StartItem cur = r.deliveredStarts.remove(0); in stopServiceTokenLocked() 1189 ServiceRecord.StartItem si = r.deliveredStarts.get(i); in scheduleServiceRestartLocked() 1504 r.pendingStarts.add(new ServiceRecord.StartItem(r, false, r.makeNextStartId(), in realStartServiceLocked() 1535 ServiceRecord.StartItem si = r.pendingStarts.remove(0); in sendServiceArgsLocked() 1845 ServiceRecord.StartItem si = r.findDeliveredStart(startId, false); in serviceDoneExecutingLocked() 2088 sr.pendingStarts.add(new ServiceRecord.StartItem(sr, true, in cleanUpRemovedTaskLocked()
|