Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java675 int selectedProfile = getCurrentProfile();
679 selectedProfile = PROFILE_PERSONAL;
681 selectedProfile = PROFILE_WORK;
686 selectedProfile = selectedProfileExtra;
695 selectedProfile == PROFILE_PERSONAL ? initialIntents : null,
704 selectedProfile == PROFILE_WORK ? initialIntents : null,
716 selectedProfile,
732 int selectedProfile = -1;
734 selectedProfile = getIntent().getIntExtra(EXTRA_SELECTED_PROFILE, /* defValue = */ -1);
735 if (selectedProfile != PROFILE_PERSONAL && selectedProfile != PROFILE_WORK) {
[all …]
H A DIntentForwarderActivity.java417 int selectedProfile = findSelectedProfile(className); in launchChooserActivityWithCorrectTab() local
419 intentReceived.putExtra(EXTRA_SELECTED_PROFILE, selectedProfile); in launchChooserActivityWithCorrectTab()
442 int selectedProfile = findSelectedProfile(className); in launchResolverActivityWithCorrectTab() local
444 intentReceived.putExtra(EXTRA_SELECTED_PROFILE, selectedProfile); in launchResolverActivityWithCorrectTab()
H A DChooserActivity.java908 int selectedProfile = findSelectedProfile();
912 selectedProfile == PROFILE_PERSONAL ? initialIntents : null,
919 selectedProfile == PROFILE_WORK ? initialIntents : null,
929 selectedProfile,
936 int selectedProfile = getSelectedProfileExtra();
937 if (selectedProfile == -1) {
938 selectedProfile = getProfileForUser(getTabOwnerUserHandleForLaunch());
940 return selectedProfile;
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DMediaProjectionAppSelectorActivity.kt321 val selectedProfile = regex
327 putExtra(EXTRA_SELECTED_PROFILE, selectedProfile)