Searched refs:PendingIntentRecord (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/services/core/java/com/android/server/am/ |
D | PendingIntentRecord.java | 35 final class PendingIntentRecord extends IIntentSender.Stub { class 39 final WeakReference<PendingIntentRecord> ref; 186 PendingIntentRecord(ActivityManagerService _owner, Key _k, int _u) { in PendingIntentRecord() method in PendingIntentRecord 190 ref = new WeakReference<PendingIntentRecord>(this); in PendingIntentRecord() 325 WeakReference<PendingIntentRecord> current = in completeFinalize()
|
D | ActivityManagerService.java | 674 final HashMap<PendingIntentRecord.Key, WeakReference<PendingIntentRecord>> mIntentSenderRecords 675 = new HashMap<PendingIntentRecord.Key, WeakReference<PendingIntentRecord>>(); 1561 ((PendingIntentRecord)msg.obj).completeFinalize(); in handleMessage() 3477 if (!(sender instanceof PendingIntentRecord)) { in startActivityIntentSender() 3481 PendingIntentRecord pir = (PendingIntentRecord)sender; in startActivityIntentSender() 5700 Iterator<WeakReference<PendingIntentRecord>> it in forceStopPackageLocked() 5703 WeakReference<PendingIntentRecord> wpir = it.next(); in forceStopPackageLocked() 5708 PendingIntentRecord pir = wpir.get(); in forceStopPackageLocked() 6518 PendingIntentRecord.Key key = new PendingIntentRecord.Key( in getIntentSenderLocked() 6521 WeakReference<PendingIntentRecord> ref; in getIntentSenderLocked() [all …]
|
D | ActivityRecord.java | 135 HashSet<WeakReference<PendingIntentRecord>> pendingResults; // all pending intents for this act 233 for (WeakReference<PendingIntentRecord> wpir : pendingResults) { in dump() 234 PendingIntentRecord pir = wpir != null ? wpir.get() : null; in dump()
|
D | ActivityStackSupervisor.java | 3809 if (!(intentSender instanceof PendingIntentRecord)) { in startActivityIntentSender() 3813 return ((PendingIntentRecord)intentSender).sendInner(0, null, null, null, null, null, in startActivityIntentSender() 3844 if (!(intentSender instanceof PendingIntentRecord)) { in checkEmbeddedAllowedIntentSender() 3847 PendingIntentRecord pendingIntent = (PendingIntentRecord) intentSender; in checkEmbeddedAllowedIntentSender()
|
D | ActivityStack.java | 2983 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) { in cleanUpActivityLocked() 2984 PendingIntentRecord rec = apr.get(); in cleanUpActivityLocked()
|