Home
last modified time | relevance | path

Searched refs:mOpCode (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/app/
DSyncNotedAppOp.java52 private final @IntRange(from = 0L, to = AppOpsManager._NUM_OP - 1) int mOpCode; field in SyncNotedAppOp
68 this.mOpCode = opCode; in SyncNotedAppOp()
70 IntRange.class, null, mOpCode, in SyncNotedAppOp()
112 return AppOpsManager.opToPublicName(mOpCode); in getOp()
187 && mOpCode == that.mOpCode in equals()
200 _hash = 31 * _hash + mOpCode; in hashCode()
217 dest.writeInt(mOpCode); in writeToParcel()
240 this.mOpCode = opCode; in SyncNotedAppOp()
242 IntRange.class, null, mOpCode, in SyncNotedAppOp()
DAsyncNotedAppOp.java47 private final @IntRange(from = 0) int mOpCode; field in AsyncNotedAppOp
65 return AppOpsManager.opToPublicName(mOpCode); in getOp()
71 Preconditions.checkArgumentInRange(mOpCode, 0, AppOpsManager._NUM_OP - 1, "opCode"); in onConstructed()
115 this.mOpCode = opCode; in AsyncNotedAppOp()
117 IntRange.class, null, mOpCode, in AsyncNotedAppOp()
194 && mOpCode == that.mOpCode in equals()
208 _hash = 31 * _hash + mOpCode; in hashCode()
225 dest.writeInt(mOpCode); in writeToParcel()
250 this.mOpCode = opCode; in AsyncNotedAppOp()
252 IntRange.class, null, mOpCode, in AsyncNotedAppOp()
DRuntimeAppOpAccessMessage.java41 private final @IntRange(from = 0L, to = AppOpsManager._NUM_OP - 1) int mOpCode; field in RuntimeAppOpAccessMessage
52 return AppOpsManager.opToPublicName(mOpCode); in getOp()
83 this.mOpCode = opCode; in RuntimeAppOpAccessMessage()
85 IntRange.class, null, mOpCode, in RuntimeAppOpAccessMessage()
168 dest.writeInt(mOpCode); in writeToParcel()
198 this.mOpCode = opCode; in RuntimeAppOpAccessMessage()
200 IntRange.class, null, mOpCode, in RuntimeAppOpAccessMessage()
DForegroundServiceTypePolicy.java1215 final int mOpCode; field in ForegroundServiceTypePolicy.AppOpPermission
1219 mOpCode = opCode; in AppOpPermission()
1227 final int mode = appOpsManager.unsafeCheckOpRawNoThrow(mOpCode, callerUid, packageName); in checkPermission()
/frameworks/base/services/core/java/com/android/server/appop/
DDiscreteRegistry.java489 int mOpCode; field in DiscreteRegistry.AttributionChain.OpEvent
497 mOpCode = opCode; in OpEvent()
504 && Objects.equals(attributionTag, mAttributionTag) && mOpCode == opCode in matches()
513 && mOpCode == other.mOpCode; in packageOpEquals()