Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DBlockInCriticalSectionChecker.cpp131 unsigned mutexCount = State->get<MutexCounter>(); in checkPostCall() local
132 if (isUnlockFunction(Call) && mutexCount > 0) { in checkPostCall()
133 State = State->set<MutexCounter>(--mutexCount); in checkPostCall()
136 State = State->set<MutexCounter>(++mutexCount); in checkPostCall()
138 } else if (mutexCount > 0) { in checkPostCall()