Home
last modified time | relevance | path

Searched refs:mOpCode (Results 1 – 4 of 4) 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()
216 dest.writeInt(mOpCode); in writeToParcel()
239 this.mOpCode = opCode; in SyncNotedAppOp()
241 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()
/frameworks/base/services/core/java/com/android/server/appop/
DDiscreteRegistry.java486 int mOpCode; field in DiscreteRegistry.AttributionChain.OpEvent
494 mOpCode = opCode; in OpEvent()
501 && Objects.equals(attributionTag, mAttributionTag) && mOpCode == opCode in matches()
510 && mOpCode == other.mOpCode; in packageOpEquals()