HomeSort by relevance Sort by last modified time
    Searched refs:FLAG_SYSTEM (Results 1 - 25 of 121) sorted by null

1 2 3 4 5

  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
NycWallpaperUtils.java 33 whichWallpaper = WallpaperManager.FLAG_SYSTEM;
37 whichWallpaper = WallpaperManager.FLAG_SYSTEM
46 cropTask.execute(WallpaperManager.FLAG_SYSTEM);
  /frameworks/base/services/core/java/com/android/server/pm/
SettingBase.java 45 & (ApplicationInfo.FLAG_SYSTEM
PackageSetting.java 78 return (pkgFlags & ApplicationInfo.FLAG_SYSTEM) != 0;
  /frameworks/base/core/tests/coretests/src/android/content/pm/
AppsQueryHelperTests.java 110 ai1.flags |= ApplicationInfo.FLAG_SYSTEM;
113 ai2.flags |= ApplicationInfo.FLAG_SYSTEM;
115 ai2.flags |= ApplicationInfo.FLAG_SYSTEM;
118 ai3.flags |= ApplicationInfo.FLAG_SYSTEM;
132 r2.activityInfo.flags |= ApplicationInfo.FLAG_SYSTEM;
144 p1.applicationInfo.flags |= ApplicationInfo.FLAG_SYSTEM;
155 sysApp1.serviceInfo.applicationInfo.flags |= ApplicationInfo.FLAG_SYSTEM;
  /cts/tests/tests/os/src/android/os/cts/
RequiredComponentsTest.java 70 ApplicationInfo.FLAG_SYSTEM,
78 ApplicationInfo.FLAG_SYSTEM, 0);
  /frameworks/base/core/java/android/app/
WallpaperManager.java 168 FLAG_SYSTEM,
177 public static final int FLAG_SYSTEM = 1 << 0;
345 ParcelFileDescriptor fd = mService.getWallpaper(this, FLAG_SYSTEM,
419 Bitmap bm = sGlobals.peekWallpaperBitmap(mContext, true, FLAG_SYSTEM);
432 return getBuiltInDrawable(0, 0, false, 0, 0, FLAG_SYSTEM);
464 horizontalAlignment, verticalAlignment, FLAG_SYSTEM);
490 if (which != FLAG_SYSTEM && which != FLAG_LOCK) {
650 Bitmap bm = sGlobals.peekWallpaperBitmap(mContext, false, FLAG_SYSTEM);
673 Bitmap bm = sGlobals.peekWallpaperBitmap(mContext, true, FLAG_SYSTEM);
688 Bitmap bm = sGlobals.peekWallpaperBitmap(mContext, false, FLAG_SYSTEM);
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
CarrierAppUtilsTest.java 99 appInfo.flags |= ApplicationInfo.FLAG_SYSTEM;
119 appInfo.flags |= ApplicationInfo.FLAG_SYSTEM;
139 appInfo.flags |= ApplicationInfo.FLAG_SYSTEM;
159 appInfo.flags |= ApplicationInfo.FLAG_SYSTEM | ApplicationInfo.FLAG_UPDATED_SYSTEM_APP;
179 appInfo.flags |= ApplicationInfo.FLAG_SYSTEM;
200 appInfo.flags |= ApplicationInfo.FLAG_SYSTEM;
220 appInfo.flags |= ApplicationInfo.FLAG_SYSTEM;
242 appInfo.flags |= ApplicationInfo.FLAG_SYSTEM;
261 appInfo.flags |= ApplicationInfo.FLAG_SYSTEM;
282 appInfo.flags |= ApplicationInfo.FLAG_SYSTEM;
    [all...]
  /frameworks/base/media/java/android/media/tv/
TvContentRatingSystemInfo.java 66 return (mApplicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/
PreferenceUtils.java 49 if ((resolveInfo.activityInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM)
  /cts/tests/tests/car/src/android/car/cts/
CarPackageManagerTest.java 76 if ((info.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0 ||
CarUiProviderTest.java 115 assertEquals(true, (flag & ApplicationInfo.FLAG_SYSTEM) != 0
  /packages/apps/Settings/tests/app/src/com/android/settings/
SettingsHookTests.java 73 assertTrue((applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0);
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
InputMethodInfoTest.java 210 if ((imi.getServiceInfo().applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) == 0) {
254 if ((serviceInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) !=
255 ApplicationInfo.FLAG_SYSTEM) {
  /cts/tests/tests/telecom/src/android/telecom/cts/
TelecomAvailabilityTest.java 55 * Test that the Telecom APK is pre-installed and a system app (FLAG_SYSTEM).
64 assertTrue("Telecom APK must be FLAG_SYSTEM",
65 (applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0);
66 Log.d(TAG, String.format("Telecom APK is FLAG_SYSTEM %d", applicationInfo.flags));
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/users/
AppRestrictionsHelper.java 179 if ((app.flags & ApplicationInfo.FLAG_SYSTEM) == 0
220 if ((app.flags & ApplicationInfo.FLAG_SYSTEM) == 0
300 if ((flags & ApplicationInfo.FLAG_SYSTEM) != 0
334 if ((flags & ApplicationInfo.FLAG_SYSTEM) != 0
  /frameworks/base/services/core/java/com/android/server/backup/
BackupUtils.java 45 if ((target.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
Partner.java 122 if ((appInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/system/
Settings.java 151 (info.activityInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0);
  /packages/apps/Launcher2/src/com/android/launcher2/
ApplicationInfo.java 74 if ((appFlags & android.content.pm.ApplicationInfo.FLAG_SYSTEM) == 0) {
  /packages/apps/Settings/src/com/android/settings/
LegalSettings.java 106 ApplicationInfo.FLAG_SYSTEM) != 0) {
  /packages/apps/Settings/src/com/android/settings/dashboard/
SuggestionsChecks.java 103 return service.getWallpaper(mCallback, WallpaperManager.FLAG_SYSTEM,
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
UninstallPreference.java 57 (ApplicationInfo.FLAG_UPDATED_SYSTEM_APP|ApplicationInfo.FLAG_SYSTEM)) == 0;
  /frameworks/base/services/core/java/com/android/server/wallpaper/
WallpaperManagerService.java 20 import static android.app.WallpaperManager.FLAG_SYSTEM;
633 clearWallpaperLocked(true, FLAG_SYSTEM, mWallpaper.userId, null);
712 clearWallpaperLocked(false, FLAG_SYSTEM, wallpaper.userId, null);
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyPermissionUtil.java 98 && (info.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
  /development/ndk/platforms/android-17/samples/Teapot/src/com/sample/helper/
NDKHelper.java 174 || (ai.flags & ApplicationInfo.FLAG_SYSTEM) == 0)

Completed in 601 milliseconds

1 2 3 4 5