Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/
DAppOpsManager.java2963 public void reinit(@IntRange(from = 0) long noteTime, in reinit()
2967 mNoteTime = Preconditions.checkArgumentNonnegative(noteTime); in reinit()
3014 @IntRange(from = 0) long noteTime, in NoteOpEvent()
3017 this.mNoteTime = noteTime; in NoteOpEvent()
3080 long noteTime = in.readLong(); in NoteOpEvent() local
3084 this.mNoteTime = noteTime; in NoteOpEvent()
/frameworks/base/services/core/java/com/android/server/appop/
DAppOpsService.java826 public void accessed(long noteTime, long duration, int proxyUid, in accessed() argument
843 existingEvent.reinit(noteTime, duration, proxyInfo, mOpEventProxyInfoPool); in accessed()
845 mAccessEvents.put(key, new NoteOpEvent(noteTime, duration, proxyInfo)); in accessed()
869 public void rejected(long noteTime, @AppOpsManager.UidState int uidState, in rejected() argument
880 existingEvent.reinit(noteTime, -1, null, mOpEventProxyInfoPool); in rejected()
882 mRejectEvents.put(key, new NoteOpEvent(noteTime, -1, null)); in rejected()