Searched refs:StartItem (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/services/core/java/com/android/server/am/ |
D | ServiceRecord.java | 120 static class StartItem { class in ServiceRecord 133 StartItem(ServiceRecord _sr, boolean _taskRemoved, int _id, Intent _intent, in StartItem() method in ServiceRecord.StartItem 171 final ArrayList<StartItem> deliveredStarts = new ArrayList<StartItem>(); 173 final ArrayList<StartItem> pendingStarts = new ArrayList<StartItem>(); 176 void dumpStartList(PrintWriter pw, String prefix, List<StartItem> list, long now) { in dumpStartList() 179 StartItem si = list.get(i); in dumpStartList() 400 public StartItem findDeliveredStart(int id, boolean remove) { in findDeliveredStart() 403 StartItem si = deliveredStarts.get(i); in findDeliveredStart()
|
D | ActiveServices.java | 353 r.pendingStarts.add(new ServiceRecord.StartItem(r, false, r.makeNextStartId(), in startServiceLocked() 546 ServiceRecord.StartItem si = r.findDeliveredStart(startId, false); in stopServiceTokenLocked() 549 ServiceRecord.StartItem cur = r.deliveredStarts.remove(0); in stopServiceTokenLocked() 1223 ServiceRecord.StartItem si = r.deliveredStarts.get(i); in scheduleServiceRestartLocked() 1558 r.pendingStarts.add(new ServiceRecord.StartItem(r, false, r.makeNextStartId(), in realStartServiceLocked() 1590 ServiceRecord.StartItem si; in sendServiceArgsLocked() 1915 ServiceRecord.StartItem si = r.findDeliveredStart(startId, false); in serviceDoneExecutingLocked() 2173 sr.pendingStarts.add(new ServiceRecord.StartItem(sr, true, in cleanUpRemovedTaskLocked()
|