Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/com/android/internal/app/
H A DIntentForwarderActivity.java101 Intent intentReceived = getIntent(); in onCreate() local
102 String className = intentReceived.getComponent().getClassName(); in onCreate()
129 if (Intent.ACTION_CHOOSER.equals(intentReceived.getAction())) { in onCreate()
130 launchChooserActivityWithCorrectTab(intentReceived, className); in onCreate()
186 Intent intentReceived, ResolveInfo resolveInfo, int messageId) { in maybeShowDisclosure() argument
187 if (shouldShowDisclosure(resolveInfo, intentReceived)) { in maybeShowDisclosure()
213 sanitizeIntent(intentReceived); in launchChooserActivityWithCorrectTab()
214 intentReceived.putExtra(EXTRA_SELECTED_PROFILE, selectedProfile); in launchChooserActivityWithCorrectTab()
238 sanitizeIntent(intentReceived); in launchResolverActivityWithCorrectTab()
239 intentReceived.putExtra(EXTRA_SELECTED_PROFILE, selectedProfile); in launchResolverActivityWithCorrectTab()
[all …]
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DSuspendPackagesTest.java172 final Intent intentReceived = pollForIntent(5); in receiveIntentFromApp() local
173 assertNotNull("No intent received from app within 5 seconds", intentReceived); in receiveIntentFromApp()
174 return intentReceived; in receiveIntentFromApp()