Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DBlockInCriticalSectionChecker.cpp154 unsigned mutexCount = State->get<MutexCounter>(); in checkPostCall() local
155 if (isUnlockFunction(Call) && mutexCount > 0) { in checkPostCall()
156 State = State->set<MutexCounter>(--mutexCount); in checkPostCall()
159 State = State->set<MutexCounter>(++mutexCount); in checkPostCall()
161 } else if (mutexCount > 0) { in checkPostCall()