Searched refs:mLastNotifiedStatus (Results 1 – 2 of 2) sorted by relevance
1155 private final WeakHashMap<IBinder, Integer> mLastNotifiedStatus = new WeakHashMap<>(); field in DeviceStateManagerService.ProcessRecord1192 @RequestStatus Integer lastStatus = mLastNotifiedStatus.get(token); in notifyRequestActiveAsync()1198 mLastNotifiedStatus.put(token, STATUS_ACTIVE); in notifyRequestActiveAsync()1210 @RequestStatus Integer lastStatus = mLastNotifiedStatus.get(token); in notifyRequestCanceledAsync()1215 mLastNotifiedStatus.put(token, STATUS_CANCELED); in notifyRequestCanceledAsync()
1018 private final HashMap<IBinder, Integer> mLastNotifiedStatus = new HashMap<>(); field in DeviceStateManagerServiceTest.TestDeviceStateManagerCallback1027 mLastNotifiedStatus.put(token, STATUS_ACTIVE); in onRequestActive()1032 mLastNotifiedStatus.put(token, STATUS_CANCELED); in onRequestCanceled()1045 return mLastNotifiedStatus.getOrDefault(requestToken, STATUS_UNKNOWN); in getLastNotifiedStatus()