Home
last modified time | relevance | path

Searched refs:PendingIntentRecord (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
DPendingIntentRecord.java41 final class PendingIntentRecord extends IIntentSender.Stub { class
47 final WeakReference<PendingIntentRecord> ref;
194 PendingIntentRecord(ActivityManagerService _owner, Key _k, int _u) { in PendingIntentRecord() method in PendingIntentRecord
198 ref = new WeakReference<PendingIntentRecord>(this); in PendingIntentRecord()
346 WeakReference<PendingIntentRecord> current = in completeFinalize()
DActivityManagerService.java715 final HashMap<PendingIntentRecord.Key, WeakReference<PendingIntentRecord>> mIntentSenderRecords
716 = new HashMap<PendingIntentRecord.Key, WeakReference<PendingIntentRecord>>();
1709 ((PendingIntentRecord)msg.obj).completeFinalize(); in handleMessage()
3939 if (!(sender instanceof PendingIntentRecord)) { in startActivityIntentSender()
3943 PendingIntentRecord pir = (PendingIntentRecord)sender; in startActivityIntentSender()
5760 Iterator<WeakReference<PendingIntentRecord>> it in forceStopPackageLocked()
5763 WeakReference<PendingIntentRecord> wpir = it.next(); in forceStopPackageLocked()
5768 PendingIntentRecord pir = wpir.get(); in forceStopPackageLocked()
6659 PendingIntentRecord.Key key = new PendingIntentRecord.Key( in getIntentSenderLocked()
6662 WeakReference<PendingIntentRecord> ref; in getIntentSenderLocked()
[all …]
DActivityRecord.java143 HashSet<WeakReference<PendingIntentRecord>> pendingResults; // all pending intents for this act
245 for (WeakReference<PendingIntentRecord> wpir : pendingResults) { in dump()
246 PendingIntentRecord pir = wpir != null ? wpir.get() : null; in dump()
DActivityStackSupervisor.java4320 if (!(intentSender instanceof PendingIntentRecord)) { in startActivityIntentSender()
4328 final PendingIntentRecord pendingIntent = (PendingIntentRecord) intentSender; in startActivityIntentSender()
DActivityStack.java3166 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) { in cleanUpActivityLocked()
3167 PendingIntentRecord rec = apr.get(); in cleanUpActivityLocked()