/frameworks/base/services/core/java/com/android/server/pm/ |
D | UserRestrictionsUtils.java | 230 public static boolean isValidRestriction(@NonNull String restriction) { in isValidRestriction() argument 231 if (!USER_RESTRICTIONS.contains(restriction)) { in isValidRestriction() 251 msg.append(restriction); in isValidRestriction() 252 if (restriction != null && isSystemApp(uid, pkgs)) { in isValidRestriction() 341 public static boolean contains(@Nullable Bundle in, String restriction) { in contains() argument 342 return in != null && in.getBoolean(restriction); in contains() 388 public static boolean canDeviceOwnerChange(String restriction) { in canDeviceOwnerChange() argument 389 return !IMMUTABLE_BY_OWNERS.contains(restriction); in canDeviceOwnerChange() 396 public static boolean canProfileOwnerChange(String restriction, int userId) { in canProfileOwnerChange() argument 397 return !IMMUTABLE_BY_OWNERS.contains(restriction) in canProfileOwnerChange() [all …]
|
D | PackageManagerServiceUtils.java | 377 public static void enforceShellRestriction(String restriction, int callingUid, int userHandle) { in enforceShellRestriction() argument 381 restriction, userHandle)) { in enforceShellRestriction()
|
/frameworks/base/core/java/android/content/ |
D | RestrictionsManager.java | 565 RestrictionEntry restriction; in loadManifestRestrictions() local 571 restriction = loadRestrictionElement(appContext, xml); in loadManifestRestrictions() 572 if (restriction != null) { in loadManifestRestrictions() 573 restrictions.add(restriction); in loadManifestRestrictions() 622 RestrictionEntry restriction = new RestrictionEntry(restrictionType, key); in loadRestriction() local 623 restriction.setTitle(title); in loadRestriction() 624 restriction.setDescription(description); in loadRestriction() 626 restriction.setChoiceEntries(appContext, entries); in loadRestriction() 629 restriction.setChoiceValues(appContext, entryValues); in loadRestriction() 636 restriction.setSelectedString( in loadRestriction() [all …]
|
D | RestrictionEntry.java | 209 for (RestrictionEntry restriction : restrictionEntries) { in RestrictionEntry() 210 if (restriction.getType() != TYPE_BUNDLE) { in RestrictionEntry()
|
/frameworks/base/core/java/android/app/admin/ |
D | SecurityLogTags.logtags | 34 210027 security_user_restriction_added (package|3),(admin_user|1),(restriction|3) 35 210028 security_user_restriction_removed (package|3),(admin_user|1),(restriction|3)
|
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/ |
D | DpmTestUtils.java | 63 for (String restriction : restrictions) { in newRestrictions() 64 ret.putBoolean(restriction, true); in newRestrictions()
|
/frameworks/native/include/binder/ |
D | ProcessState.h | 92 void setCallRestriction(CallRestriction restriction);
|
/frameworks/native/libs/binder/include/binder/ |
D | ProcessState.h | 92 void setCallRestriction(CallRestriction restriction);
|
/frameworks/base/wifi/java/android/net/wifi/hotspot2/pps/ |
D | UpdateParameter.java | 119 public void setRestriction(String restriction) { in setRestriction() argument 120 mRestriction = restriction; in setRestriction()
|
/frameworks/native/libs/binder/ |
D | ProcessState.cpp | 231 void ProcessState::setCallRestriction(CallRestriction restriction) { in setCallRestriction() argument 235 mCallRestriction = restriction; in setCallRestriction()
|
/frameworks/wilhelm/include/SLES/ |
D | NOTICE | 5 deal in the Materials without restriction, including without limitation the
|
/frameworks/native/opengl/include/EGL/ |
D | NOTICE | 5 "Materials"), to deal in the Materials without restriction, including
|
/frameworks/native/opengl/include/KHR/ |
D | NOTICE | 5 "Materials"), to deal in the Materials without restriction, including
|
/frameworks/wilhelm/include/OMXAL/ |
D | NOTICE | 5 "Materials "), to deal in the Materials without restriction, including
|
/frameworks/native/opengl/include/GLES2/ |
D | NOTICE | 19 "Materials"), to deal in the Materials without restriction, including
|
/frameworks/native/opengl/include/GLES/ |
D | NOTICE | 19 "Materials"), to deal in the Materials without restriction, including
|
/frameworks/native/vulkan/api/ |
D | platform.api | 5 // "Materials"), to deal in the Materials without restriction, including
|
/frameworks/native/opengl/include/GLES3/ |
D | NOTICE | 22 "Materials"), to deal in the Materials without restriction, including
|
/frameworks/compile/mclinker/ |
D | LICENSE.TXT | 18 the Software without restriction, including without limitation the rights to
|
/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/ |
D | PackageInstallerActivity.java | 450 private void startAdminSupportDetailsActivity(String restriction) { in startAdminSupportDetailsActivity() argument 454 final Intent showAdminSupportDetailsIntent = dpm.createAdminSupportIntent(restriction); in startAdminSupportDetailsActivity()
|
/frameworks/base/services/core/java/com/android/server/clipboard/ |
D | ClipboardService.java | 495 private boolean hasRestriction(String restriction, int userId) { in hasRestriction() argument 497 return mUm.hasUserRestriction(restriction, userId); in hasRestriction()
|
/frameworks/base/core/proto/android/app/ |
D | settings_enums.proto | 434 // ACTION: Settings > Battery settings > Battery tip > App restriction tip 458 // ACTION: Settings > Battery settings > Battery tip > App restriction list shown 466 // ACTION: Settings > Battery settings > Battery tip > Open app restriction page 2236 // > Notification restriction 2243 // > Notification restriction > Custom 2250 // > Notification restriction > Custom > Allow messages 2257 // > Notification restriction > Custom > Allow calls
|
/frameworks/native/vulkan/api/templates/ |
D | vulkan_h.tmpl | 24 ** "Materials"), to deal in the Materials without restriction, including
|
/frameworks/base/core/proto/android/telecomm/ |
D | enums.proto | 177 * Disconnected because of a restriction on placing the call, such as dialing in airplane
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | UserController.java | 1978 private void enforceShellRestriction(String restriction, int userHandle) { 1980 if (userHandle < 0 || hasUserRestriction(restriction, userHandle)) { 1987 boolean hasUserRestriction(String restriction, int userId) { 1988 return mInjector.getUserManager().hasUserRestriction(restriction, userId);
|