Home
last modified time | relevance | path

Searched refs:StartItem (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
DServiceRecord.java123 static class StartItem { class in ServiceRecord
137 StartItem(ServiceRecord _sr, boolean _taskRemoved, int _id, Intent _intent, in StartItem() method in ServiceRecord.StartItem
176 final ArrayList<StartItem> deliveredStarts = new ArrayList<StartItem>();
178 final ArrayList<StartItem> pendingStarts = new ArrayList<StartItem>();
181 void dumpStartList(PrintWriter pw, String prefix, List<StartItem> list, long now) { in dumpStartList()
184 StartItem si = list.get(i); in dumpStartList()
421 public StartItem findDeliveredStart(int id, boolean remove) { in findDeliveredStart()
424 StartItem si = deliveredStarts.get(i); in findDeliveredStart()
DActiveServices.java410 r.pendingStarts.add(new ServiceRecord.StartItem(r, false, r.makeNextStartId(), in startServiceLocked()
690 ServiceRecord.StartItem si = r.findDeliveredStart(startId, false); in stopServiceTokenLocked()
693 ServiceRecord.StartItem cur = r.deliveredStarts.remove(0); in stopServiceTokenLocked()
1905 ServiceRecord.StartItem si = r.deliveredStarts.get(i); in scheduleServiceRestartLocked()
2261 r.pendingStarts.add(new ServiceRecord.StartItem(r, false, r.makeNextStartId(), in realStartServiceLocked()
2294 ServiceRecord.StartItem si = r.pendingStarts.remove(0); in sendServiceArgsLocked()
2693 ServiceRecord.StartItem si = r.findDeliveredStart(startId, false); in serviceDoneExecutingLocked()
2991 sr.pendingStarts.add(new ServiceRecord.StartItem(sr, true, in cleanUpRemovedTaskLocked()
/frameworks/base/services/
Dprofile-classes3916 Lcom/android/server/am/ServiceRecord$StartItem;