Home
last modified time | relevance | path

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

/development/tools/bugreport/src/com/android/bugreport/inspector/
DDeadlockDetector.java126 final TreeSet<LockRecord> locksToVisit = new TreeSet<LockRecord>(); in detectDeadlocks() local
138 addLockRecordsForThread(locksToVisit, locksVisited, offendingProcess, offendingThread); in detectDeadlocks()
161 if (locksToVisit.size() == 0) { in detectDeadlocks()
170 while (locksToVisit.size() > 0) { in detectDeadlocks()
171 final LockRecord lr = locksToVisit.pollFirst(); in detectDeadlocks()
186 addLockRecordsForThread(locksToVisit, locksVisited, lr.process, thread); in detectDeadlocks()