Home | History | Annotate | Download | only in internal

Lines Matching defs:checkState

149           checkState();
165 checkState();
180 checkState();
181 Preconditions.checkState(lockOwnerThreadId != null,
183 Preconditions.checkState(lockOwnerThreadId == currentThreadId,
194 Preconditions.checkState(locksOwnedByThread.remove(currentThreadId, this),
205 void checkState() throws IllegalStateException {
207 Preconditions.checkState(!lockThreadIsWaitingOn.containsKey(currentThreadId),
211 Preconditions.checkState(lockReentranceCount >= 0,
213 Preconditions.checkState(locksOwnedByThread.get(lockOwnerThreadId).contains(this),
218 Preconditions.checkState(lockReentranceCount == 0,
220 Preconditions.checkState(!locksOwnedByThread.values().contains(this),
284 Preconditions.checkState(found, "Internal error: We can not find locks that "