Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DBlockInCriticalSectionChecker.cpp153 unsigned mutexCount = State->get<MutexCounter>(); in checkPostCall() local
154 if (isUnlockFunction(Call) && mutexCount > 0) { in checkPostCall()
155 State = State->set<MutexCounter>(--mutexCount); in checkPostCall()
158 State = State->set<MutexCounter>(++mutexCount); in checkPostCall()
160 } else if (mutexCount > 0) { in checkPostCall()