Home
last modified time | relevance | path

Searched refs:eventNotifier (Results 1 – 4 of 4) sorted by relevance

/cts/tests/framework/base/windowmanager/backgroundactivity/AppA/src/android/server/wm/backgroundactivity/appa/
DSendPendingIntentReceiver.java44 ResultReceiver eventNotifier = receivedIntent.getParcelableExtra(EVENT_NOTIFIER_EXTRA); in onReceive() local
45 if (eventNotifier != null) { in onReceive()
46 eventNotifier.send(Event.APP_A_SEND_PENDING_INTENT_BROADCAST_RECEIVED, null); in onReceive()
56 newIntent.putExtra(EVENT_NOTIFIER_EXTRA, eventNotifier); in onReceive()
72 intent.putExtra(EVENT_NOTIFIER_EXTRA, eventNotifier); in onReceive()
DStartBackgroundActivityReceiver.java36 ResultReceiver eventNotifier = intent.getParcelableExtra(EVENT_NOTIFIER_EXTRA); in onReceive() local
37 if (eventNotifier != null) { in onReceive()
38 eventNotifier.send(Event.APP_A_START_BACKGROUND_ACTIVITY_BROADCAST_RECEIVED, null); in onReceive()
/cts/tests/framework/base/windowmanager/backgroundactivity/AppB/src/android/server/wm/backgroundactivity/appb/
DStartPendingIntentReceiver.java37 ResultReceiver eventNotifier = intent.getParcelableExtra(EVENT_NOTIFIER_EXTRA); in onReceive() local
38 if (eventNotifier != null) { in onReceive()
39 eventNotifier.send(Event.APP_B_START_PENDING_INTENT_BROADCAST_RECEIVED, null); in onReceive()
/cts/tests/framework/base/windowmanager/backgroundactivity/src/android/server/wm/
DBackgroundActivityLaunchTest.java740 private void sendPendingIntentBroadcast(int delayMs, @Nullable ResultReceiver eventNotifier) { in sendPendingIntentBroadcast() argument
747 intent.putExtra(EVENT_NOTIFIER_EXTRA, eventNotifier); in sendPendingIntentBroadcast()