Searched refs:mRejectTimes (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/app/ |
D | AppOpsManager.java | 2246 private final @Nullable LongSparseLongArray mRejectTimes; field in AppOpsManager.OpEntry 2262 mRejectTimes = rejectTimes; in OpEntry() 2276 mRejectTimes = null; in OpEntry() 2288 result = AppOpsManager.collectKeys(mRejectTimes, result); in collectKeys() 2437 return maxForFlagsInStates(mRejectTimes, MAX_PRIORITY_UID_STATE, in getLastRejectTime() 2458 return maxForFlagsInStates(mRejectTimes, MAX_PRIORITY_UID_STATE, in getLastRejectForegroundTime() 2479 return maxForFlagsInStates(mRejectTimes, resolveLastRestrictedUidState(mOp), in getLastRejectBackgroundTime() 2506 return maxForFlagsInStates(mRejectTimes, fromUidState, toUidState, flags); in getLastRejectTime() 2659 writeLongSparseLongArrayToParcel(mRejectTimes, dest); in writeToParcel() 2670 mRejectTimes = readLongSparseLongArrayFromParcel(source); in OpEntry()
|
/frameworks/base/services/core/java/com/android/server/appop/ |
D | AppOpsService.java | 418 private @Nullable LongSparseLongArray mRejectTimes; field in AppOpsService.Op 459 if (mRejectTimes == null) { in rejected() 460 mRejectTimes = new LongSparseLongArray(); in rejected() 462 mRejectTimes.put(key, time); in rejected() 525 || (mRejectTimes != null && mRejectTimes.size() > 0); in hasAnyTime() 1046 op.mRejectTimes != null ? op.mRejectTimes.clone() : null, in getOpEntryForResult() 2011 op.mRejectTimes, op.mDurations, op.mProxyUids, op.mProxyPackageNames); in noteOperationUnchecked() 2388 op.mRejectTimes, op.mDurations, op.mProxyUids, op.mProxyPackageNames); in finishOperationLocked() 3583 op.mRejectTimes, op.mDurations, op.mProxyUids, op.mProxyPackageNames); in dumpStatesLocked()
|