Home
last modified time | relevance | path

Searched refs:curComponent (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
DBroadcastQueue.java316 r.intent.setComponent(r.curComponent); in processCurBroadcastLocked()
321 "Delivering to component " + r.curComponent in processCurBroadcastLocked()
358 + br.curComponent.flattenToShortString(), e); in sendPendingBroadcastsLocked()
536 if (waitForServices && r.curComponent != null && r.queue.mDelayBehindServices in finishReceiverLocked()
554 Slog.i(TAG, "Delay finish: " + r.curComponent.flattenToShortString()); in finishReceiverLocked()
561 r.curComponent = null; in finishReceiverLocked()
575 br.curComponent = null; in backgroundServicesFinishedLocked()
1643 r.curComponent = component; in processNextBroadcastLocked()
1655 if (r.intent.getComponent() != null && r.curComponent != null in processNextBroadcastLocked()
1656 && !TextUtils.equals(r.curComponent.getPackageName(), r.callerPackage)) { in processNextBroadcastLocked()
[all …]
DBroadcastRecord.java118 ComponentName curComponent; // the receiver class that is currently running. field in BroadcastRecord
201 pw.println((curComponent != null ? curComponent.toShortString() : "--")); in dump()