Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DBlockInCriticalSectionChecker.cpp135 unsigned mutexCount = State->get<MutexCounter>(); in checkPostCall() local
136 if (isUnlockFunction(Call) && mutexCount > 0) { in checkPostCall()
137 State = State->set<MutexCounter>(--mutexCount); in checkPostCall()
140 State = State->set<MutexCounter>(++mutexCount); in checkPostCall()
142 } else if (mutexCount > 0) { in checkPostCall()