Home
last modified time | relevance | path

Searched refs:installReason (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Settings/src/com/android/settings/applications/
DInstalledAppCounter.java40 public InstalledAppCounter(@NonNull Context context, int installReason, in InstalledAppCounter() argument
42 this(context, installReason, packageManager, new FeatureFlagsImpl()); in InstalledAppCounter()
46 InstalledAppCounter(@NonNull Context context, int installReason, in InstalledAppCounter() argument
49 mInstallReason = installReason; in InstalledAppCounter()
57 public static boolean includeInCount(int installReason, PackageManager pm, in includeInCount() argument
60 if (installReason != IGNORE_INSTALL_REASON in includeInCount()
62 new UserHandle(userId)) != installReason) { in includeInCount()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/enterprise/apps/
DInstalledAppCounter.java41 public InstalledAppCounter(Context context, int installReason, in InstalledAppCounter() argument
44 mInstallReason = installReason; in InstalledAppCounter()
52 public static boolean includeInCount(int installReason, PackageManager pm, in includeInCount() argument
55 if (installReason != IGNORE_INSTALL_REASON in includeInCount()
57 new UserHandle(userId)) != installReason) { in includeInCount()
/packages/apps/Car/Settings/src/com/android/car/settingslib/applications/
DInstalledAppCounter.java41 public InstalledAppCounter(Context context, int installReason, in InstalledAppCounter() argument
44 mInstallReason = installReason; in InstalledAppCounter()
55 public static boolean includeInCount(int installReason, PackageManager pm, in includeInCount() argument
58 if (installReason != IGNORE_INSTALL_REASON in includeInCount()
60 new UserHandle(userId)) != installReason) { in includeInCount()
/packages/apps/TvSettings/SettingsAPI/java/com/android/tv/settings/library/enterprise/apps/
DInstalledAppCounter.java41 public InstalledAppCounter(Context context, int installReason, in InstalledAppCounter() argument
44 mInstallReason = installReason; in InstalledAppCounter()
52 public static boolean includeInCount(int installReason, PackageManager pm, in includeInCount() argument
55 if (installReason != IGNORE_INSTALL_REASON in includeInCount()
57 new UserHandle(userId)) != installReason) { in includeInCount()
/packages/apps/Settings/tests/robotests/src/com/android/settings/applications/
DInstalledAppCounterTest.java254 private void count(int installReason, boolean async) { in count() argument
256 final InstalledAppCounterTestable counter = new InstalledAppCounterTestable(installReason); in count()
266 private void count(int installReason, FeatureFlags featureFlags) { in count() argument
269 new InstalledAppCounterTestable(installReason, featureFlags); in count()
323 private InstalledAppCounterTestable(int installReason) { in InstalledAppCounterTestable() argument
324 super(mContext, installReason, mPackageManager); in InstalledAppCounterTestable()
327 private InstalledAppCounterTestable(int installReason, FeatureFlags featureFlags) { in InstalledAppCounterTestable() argument
328 super(mContext, installReason, mPackageManager, featureFlags); in InstalledAppCounterTestable()