Lines Matching refs:receiver

112      * The receiver index that is pending, to restart the broadcast if needed.
206 r.receiver = app.thread.asBinder();
211 // Tell the application to launch this receiver.
230 r.receiver = null;
246 Slog.w(TAG, "Exception in new application when starting receiver "
252 // We need to reset the state if we fails to start the receiver.
274 // The current broadcast is waiting for this app's receiver
309 public BroadcastRecord getMatchingOrderedReceiver(IBinder receiver) {
312 if (r != null && r.receiver == receiver) {
329 r.receiver = null;
348 // We will process the next receiver right now if this is finishing
349 // an app receiver (which is always asynchronous) or after we have
350 // come back from calling a receiver.
355 private static void performReceiveLocked(ProcessRecord app, IIntentReceiver receiver,
358 // Send the intent to the receiver asynchronously using one-way binder calls.
362 app.thread.scheduleRegisteredReceiver(receiver, intent, resultCode,
365 receiver.performReceive(intent, resultCode, data, extras, ordered, sticky);
381 + " due to registered receiver " + filter);
406 r.receiver = filter.receiverList.receiver.asBinder();
427 performReceiveLocked(filter.receiverList.app, filter.receiverList.receiver,
436 r.receiver = null;
605 // Get the next receiver...
608 // Keep track of when this receiver started, and make sure there
627 // Simple case: this is a registered receiver who gets
635 if (r.receiver == null || !r.ordered) {
636 // The receiver has already finished, so schedule to
640 + r.ordered + " receiver=" + r.receiver);
647 // Hard case: need to instantiate the receiver, possibly
664 + " due to receiver " + info.activityInfo.packageName
672 + " due to receiver " + info.activityInfo.packageName
709 r.receiver = null;
744 // Is this receiver's application already running?
834 // broadcast timeout message after each receiver finishes. Instead, we set up
846 Slog.w(TAG, "Timeout of broadcast " + r + " - receiver=" + r.receiver
851 // Current receiver has passed its expiration date.
853 Slog.w(TAG, "Timeout on receiver with nextReceiver <= 0");
884 // Move on to the next receiver.
925 Slog.w(TAG, "Discarding broadcast before first receiver is invoked: "