Home
last modified time | relevance | path

Searched refs:launcherIntent (Results 1 – 8 of 8) sorted by relevance

/aosp14/frameworks/base/core/java/com/android/internal/notification/
H A DNotificationAccessConfirmationActivityContract.java35 public static Intent launcherIntent(Context context, int userId, ComponentName component) { in launcherIntent() method in NotificationAccessConfirmationActivityContract
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/users/
H A DAppRestrictionsHelper.java171 Intent launcherIntent = new Intent(Intent.ACTION_MAIN); in fetchAndMergeApps() local
173 launcherIntent.addCategory(Intent.CATEGORY_LEANBACK_LAUNCHER); in fetchAndMergeApps()
175 launcherIntent.addCategory(Intent.CATEGORY_LAUNCHER); in fetchAndMergeApps()
177 addSystemApps(mVisibleApps, launcherIntent, excludePackages); in fetchAndMergeApps()
H A DAppCopyHelper.java144 final Intent launcherIntent = new Intent(Intent.ACTION_MAIN).addCategory( in addCurrentUsersApps() local
146 addSystemApps(mVisibleApps, launcherIntent); in addCurrentUsersApps()
/aosp14/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DOverlayPackagesProvider.java234 final Intent launcherIntent = new Intent(Intent.ACTION_MAIN); in getLaunchableApps() local
235 launcherIntent.addCategory(Intent.CATEGORY_LAUNCHER); in getLaunchableApps()
236 final List<ResolveInfo> resolveInfos = mPm.queryIntentActivitiesAsUser(launcherIntent, in getLaunchableApps()
/aosp14/frameworks/base/services/core/java/com/android/server/pm/
H A DBroadcastHelper.java293 Intent launcherIntent = new Intent(PackageInstaller.ACTION_SESSION_COMMITTED) in sendSessionCommitBroadcast() local
297 mContext.sendBroadcastAsUser(launcherIntent, UserHandle.of(launcherUid)); in sendSessionCommitBroadcast()
H A DSettings.java4349 final Intent launcherIntent = new Intent(Intent.ACTION_MAIN);
4350 launcherIntent.addCategory(Intent.CATEGORY_LAUNCHER);
4351 launcherIntent.setPackage(ps.getPackageName());
4353 service.snapshotComputer().queryIntentActivitiesInternal(launcherIntent,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/pipeline/
H A DMediaDataManager.kt1503 val launcherIntent = regex
1517 clickIntent = launcherIntent,
/aosp14/frameworks/base/services/companion/java/com/android/server/companion/
H A DCompanionDeviceManagerService.java698 NotificationAccessConfirmationActivityContract.launcherIntent( in requestNotificationAccess()