Home
last modified time | relevance | path

Searched refs:systemApp (Results 1 – 10 of 10) sorted by relevance

/packages/apps/StorageManager/robotests/src/com/android/storagemanager/deletionhelper/
DAppStateUsageStatsBridgeTest.java321 ApplicationsState.AppEntry systemApp = in test_multipleApps_processCorrectly() local
324 systemApp.info.flags = ApplicationInfo.FLAG_SYSTEM; in test_multipleApps_processCorrectly()
325 mApps.add(systemApp); in test_multipleApps_processCorrectly()
336 assertThat(AppStateUsageStatsBridge.FILTER_USAGE_STATS.filterApp(systemApp)).isFalse(); in test_multipleApps_processCorrectly()
350 ApplicationsState.AppEntry systemApp = in test_noThresholdFilter_ignoresUsageForFiltering() local
353 systemApp.info.flags = ApplicationInfo.FLAG_SYSTEM; in test_noThresholdFilter_ignoresUsageForFiltering()
354 mApps.add(systemApp); in test_noThresholdFilter_ignoresUsageForFiltering()
365 assertThat(AppStateUsageStatsBridge.FILTER_NO_THRESHOLD.filterApp(systemApp)).isFalse(); in test_noThresholdFilter_ignoresUsageForFiltering()
DAppsAsyncLoaderTest.java237 AppsAsyncLoader.PackageInfo systemApp = in test_multipleApps_processCorrectly() local
241 systemApp.flags = ApplicationInfo.FLAG_SYSTEM; in test_multipleApps_processCorrectly()
242 registerApp(systemApp, 2, TimeUnit.DAYS.toMillis(800)); in test_multipleApps_processCorrectly()
275 AppsAsyncLoader.PackageInfo systemApp = in test_noThresholdFilter_ignoresUsageForFiltering() local
279 systemApp.flags = ApplicationInfo.FLAG_SYSTEM; in test_noThresholdFilter_ignoresUsageForFiltering()
280 registerApp(systemApp, 2, TimeUnit.DAYS.toMillis(800)); in test_noThresholdFilter_ignoresUsageForFiltering()
/packages/apps/Settings/src/com/android/settings/notification/
DNotificationBackend.java61 row.systemApp = Utils.isSystemPackage(context.getResources(), pm, app); in loadAppRow()
82 row.systemApp = row.lockedImportance = true; in markAppRowWithBlockables()
199 public boolean systemApp; field in NotificationBackend.AppRow
DAppNotificationSettings.java215 && isChannelBlockable(mAppRow.systemApp, channel) in populateSingleChannelPrefs()
303 if (mAppRow.systemApp && !mAppRow.banned) { in setupBlock()
330 if (mAppRow.systemApp && !mAppRow.banned) { in updateDependents()
DNotificationSettingsBase.java454 protected boolean isChannelBlockable(boolean systemApp, NotificationChannel channel) { in isChannelBlockable() argument
455 if (!mAppRow.systemApp) { in isChannelBlockable()
DChannelNotificationSettings.java276 if (!isChannelBlockable(mAppRow.systemApp, mChannel)) { in setupBlock()
/packages/apps/Launcher3/src/com/android/launcher3/
DDefaultLayoutParser.java121 final ResolveInfo systemApp = getSingleSystemActivity(appList); in invalidPackageOrClass() local
122 if (systemApp == null) { in invalidPackageOrClass()
129 resolved = systemApp; in invalidPackageOrClass()
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/
DDisableInstallShortcutListenersTask.java61 for (String systemApp : systemApps) { in run()
62 actionShortcut.setPackage(systemApp); in run()
/packages/apps/Settings/tests/unit/src/com/android/settings/deviceinfo/storage/
DStorageAsyncLoaderTest.java154 ApplicationInfo systemApp = in testUpdatedSystemAppCodeSizeIsCounted() local
156 systemApp.flags = ApplicationInfo.FLAG_SYSTEM & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP; in testUpdatedSystemAppCodeSizeIsCounted()
/packages/apps/Settings/src/com/android/settings/applications/
DRunningServiceDetails.java125 report.systemApp = (mServiceItem.mServiceInfo.applicationInfo.flags in onClick()