Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/app/
DResolverActivity.java690 int selectedProfile = getCurrentProfile();
694 selectedProfile = PROFILE_PERSONAL;
696 selectedProfile = PROFILE_WORK;
701 selectedProfile = selectedProfileExtra;
710 selectedProfile == PROFILE_PERSONAL ? initialIntents : null,
719 selectedProfile == PROFILE_WORK ? initialIntents : null,
731 selectedProfile,
747 int selectedProfile = -1;
749 selectedProfile = getIntent().getIntExtra(EXTRA_SELECTED_PROFILE, /* defValue = */ -1);
750 if (selectedProfile != PROFILE_PERSONAL && selectedProfile != PROFILE_WORK) {
[all …]
DIntentForwarderActivity.java488 int selectedProfile = findSelectedProfile(className); in launchChooserActivityWithCorrectTab() local
490 intentReceived.putExtra(EXTRA_SELECTED_PROFILE, selectedProfile); in launchChooserActivityWithCorrectTab()
513 int selectedProfile = findSelectedProfile(className); in launchResolverActivityWithCorrectTab() local
515 intentReceived.putExtra(EXTRA_SELECTED_PROFILE, selectedProfile); in launchResolverActivityWithCorrectTab()
/frameworks/base/packages/SystemUI/src/com/android/systemui/mediaprojection/appselector/
DMediaProjectionAppSelectorActivity.kt362 val selectedProfile = in Intent() constant
368 putExtra(EXTRA_SELECTED_PROFILE, selectedProfile) in Intent()