/frameworks/base/services/core/java/com/android/server/biometrics/ |
D | BiometricServiceBase.java | 222 boolean restricted, String owner, int cookie, boolean requireConfirmation) { in AuthenticationClientImpl() argument 224 groupId, opId, restricted, owner, cookie, requireConfirmation); in AuthenticationClientImpl() 284 byte[] cryptoToken, boolean restricted, String owner, in EnrollClientImpl() argument 287 userId, groupId, cryptoToken, restricted, owner, getBiometricUtils(), in EnrollClientImpl() 304 boolean restricted, String owner) { in InternalRemovalClient() argument 306 userId, restricted, owner, getBiometricUtils()); in InternalRemovalClient() 329 ServiceListener listener, int groupId, int userId, boolean restricted, in InternalEnumerateClient() argument 333 restricted, owner); in InternalEnumerateClient() 1168 final boolean restricted = !hasPermission(getManageBiometricPermission()); in isRestricted() 1169 return restricted; in isRestricted() [all …]
|
D | EnumerateClient.java | 36 boolean restricted, String owner) { in EnumerateClient() argument 37 super(context, constants, daemon, halDeviceId, token, listener, userId, groupId, restricted, in EnumerateClient()
|
D | RemovalClient.java | 39 boolean restricted, String owner, BiometricUtils utils) { in RemovalClient() argument 40 super(context, constants, daemon, halDeviceId, token, listener, userId, groupId, restricted, in RemovalClient()
|
D | EnrollClient.java | 46 byte[] cryptoToken, boolean restricted, String owner, BiometricUtils utils, in EnrollClient() argument 48 super(context, constants, daemon, halDeviceId, token, listener, userId, groupId, restricted, in EnrollClient()
|
D | ClientMonitor.java | 86 boolean restricted, String owner, int cookie) { in ClientMonitor() argument 95 mIsRestricted = restricted; in ClientMonitor()
|
D | AuthenticationClient.java | 72 boolean restricted, String owner, int cookie, boolean requireConfirmation) { in AuthenticationClient() argument 74 restricted, owner, cookie); in AuthenticationClient()
|
/frameworks/base/services/core/java/com/android/server/biometrics/fingerprint/ |
D | FingerprintService.java | 133 boolean restricted, String owner, int cookie, in FingerprintAuthClient() argument 136 restricted, owner, cookie, requireConfirmation); in FingerprintAuthClient() 203 final boolean restricted = isRestricted(); in enroll() 207 cryptoToken, restricted, opPackageName, new int[0] /* disabledFeatures */, in enroll() 234 final boolean restricted = isRestricted(); in authenticate() 237 mCurrentUserId, groupId, opId, restricted, opPackageName, in authenticate() 248 final boolean restricted = true; // BiometricPrompt is always restricted in prepareForAuthentication() 252 mCurrentUserId, groupId, opId, restricted, opPackageName, cookie, in prepareForAuthentication() 294 final boolean restricted = isRestricted(); in remove() 297 fingerId, groupId, userId, restricted, token.toString(), getBiometricUtils()) { in remove() [all …]
|
/frameworks/base/services/core/java/com/android/server/biometrics/face/ |
D | FaceService.java | 210 boolean restricted, String owner, int cookie, boolean requireConfirmation) { in FaceAuthClient() argument 212 restricted, owner, cookie, requireConfirmation); in FaceAuthClient() 374 final boolean restricted = isRestricted(); in enroll() 377 0 /* groupId */, cryptoToken, restricted, opPackageName, disabledFeatures, in enroll() 416 final boolean restricted = isRestricted(); in authenticate() 419 mCurrentUserId, 0 /* groupId */, opId, restricted, opPackageName, in authenticate() 431 final boolean restricted = true; // BiometricPrompt is always restricted in prepareForAuthentication() 435 mCurrentUserId, 0 /* groupId */, opId, restricted, opPackageName, cookie, in prepareForAuthentication() 478 final boolean restricted = isRestricted(); in remove() 481 0 /* groupId */, userId, restricted, token.toString(), getBiometricUtils()) { in remove() [all …]
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/ |
D | AppItem.java | 29 public boolean restricted; field in AppItem
|
/frameworks/base/services/core/java/com/android/server/ |
D | AppStateTracker.java | 594 boolean restricted) { in updateForcedAppStandbyUidPackageLocked() argument 597 if (wasRestricted == restricted) { in updateForcedAppStandbyUidPackageLocked() 600 if (restricted) { in updateForcedAppStandbyUidPackageLocked() 663 boolean restricted = false; in opChanged() 665 restricted = mAppOpsService.checkOperation(TARGET_OP, in opChanged() 671 if (updateForcedAppStandbyUidPackageLocked(uid, packageName, restricted)) { in opChanged()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | IAppOpsService.aidl | 73 …void setUserRestriction(int code, boolean restricted, IBinder token, int userHandle, in String[] e… in setUserRestriction() argument
|
/frameworks/base/core/java/android/net/ |
D | network-policy-restrictions.md | 3 …e status of Data Saver mode, Battery Saver mode, and the app's allowlist on those restricted modes.
|
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/ |
D | EthernetTracker.java | 335 boolean restricted = isRestrictedInterface(iface); in updateInterfaceState() 339 if (restricted) { in updateInterfaceState()
|
/frameworks/base/core/proto/android/telephony/ |
D | enums.proto | 147 /** SIM card state: SIM Card restricted, present but not usable due to
|
/frameworks/base/core/proto/android/service/ |
D | package.proto | 106 // Is the app restricted by owner / admin
|
/frameworks/minikin/doc/ |
D | hyb_file_format.md | 89 restricted to 11 bits (2048 possible values). The largest known current value is 483
|
/frameworks/base/services/core/java/com/android/server/appop/ |
D | AppOpsService.java | 4374 public void setUserRestriction(int code, boolean restricted, IBinder token, int userHandle, in setUserRestriction() argument 4391 setUserRestrictionNoCheck(code, restricted, token, userHandle, exceptionPackages); in setUserRestriction() 4394 private void setUserRestrictionNoCheck(int code, boolean restricted, IBinder token, in setUserRestrictionNoCheck() argument 4408 if (restrictionState.setRestriction(code, restricted, exceptionPackages, userHandle)) { in setUserRestrictionNoCheck() 4593 public boolean setRestriction(int code, boolean restricted, in setRestriction() argument 4597 if (perUserRestrictions == null && restricted) { in setRestriction() 4620 if (userRestrictions == null && restricted) { in setRestriction() 4624 if (userRestrictions != null && userRestrictions[code] != restricted) { in setRestriction() 4625 userRestrictions[code] = restricted; in setRestriction() 4626 if (!restricted && isDefault(userRestrictions)) { in setRestriction()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/am/ |
D | ActivityManagerServiceTest.java | 951 public void setNetworkRestrictedForUid(boolean restricted) { in setNetworkRestrictedForUid() argument 952 mRestricted = restricted; in setNetworkRestrictedForUid()
|
/frameworks/base/core/java/android/app/ |
D | AppOpsManager.java | 4620 public void setUserRestriction(int code, boolean restricted, IBinder token) { in setUserRestriction() argument 4621 setUserRestriction(code, restricted, token, /*exceptionPackages*/null); in setUserRestriction() 4625 public void setUserRestriction(int code, boolean restricted, IBinder token, in setUserRestriction() argument 4627 setUserRestrictionForUser(code, restricted, token, exceptionPackages, mContext.getUserId()); in setUserRestriction() 4631 public void setUserRestrictionForUser(int code, boolean restricted, IBinder token, in setUserRestrictionForUser() argument 4634 mService.setUserRestriction(code, restricted, token, userId, exceptionPackages); in setUserRestrictionForUser()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | PhoneSwitcherTest.java | 1235 private NetworkRequest addInternetNetworkRequest(Integer subId, int score, boolean restricted) in addInternetNetworkRequest() argument 1240 if (restricted) { in addInternetNetworkRequest()
|
/frameworks/av/apex/ |
D | ld.config.txt | 129 # Once in this namespace, access to libraries in /system/lib is restricted. Only
|
/frameworks/compile/slang/tests/F_reduce_general_bad_result/ |
D | reduce_general_bad_result.rscript | 12 // NOTE: accumulator data type is restricted in certain ways regardless
|
/frameworks/native/opengl/tests/angeles/ |
D | license-LGPL.txt | 144 running a program using the Library is not restricted, and output from 405 12. If the distribution and/or use of the Library is restricted in
|
/frameworks/opt/telephony/proto/src/ |
D | telephony.proto | 301 // but either DCNR is restricted 306 // and both DCNR is not restricted and NR is supported
|
/frameworks/base/core/proto/android/server/ |
D | jobscheduler.proto | 870 // The job is not restricted from running in the background (due to
|