Home
last modified time | relevance | path

Searched refs:_NUM_OP (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/app/
DAppOpsManager.java210 public static final int _NUM_OP = 48; field in AppOpsManager
681 if (sOpToSwitch.length != _NUM_OP) {
683 + " should be " + _NUM_OP);
685 if (sOpToString.length != _NUM_OP) {
687 + " should be " + _NUM_OP);
689 if (sOpNames.length != _NUM_OP) {
691 + " should be " + _NUM_OP);
693 if (sOpPerms.length != _NUM_OP) {
695 + " should be " + _NUM_OP);
697 if (sOpDefaultMode.length != _NUM_OP) {
[all …]
/frameworks/base/services/core/java/com/android/server/
DAppOpsService.java775 if (op >= 0 && op < AppOpsManager._NUM_OP) { in verifyIncomingOp()
1272 opRestrictions = new boolean[AppOpsManager._NUM_OP]; in setUserRestrictions()