Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/storage/
DStorageUserConnection.java252 int ioBlockedCounter = mUidsBlockedOnIo.get(uid, 0); in notifyAppIoBlocked() local
253 mUidsBlockedOnIo.put(uid, ++ioBlockedCounter); in notifyAppIoBlocked()
266 int ioBlockedCounter = mUidsBlockedOnIo.get(uid, 0); in notifyAppIoResumed() local
267 if (ioBlockedCounter == 0) { in notifyAppIoResumed()
271 if (ioBlockedCounter <= 1) { in notifyAppIoResumed()
274 mUidsBlockedOnIo.put(uid, --ioBlockedCounter); in notifyAppIoResumed()