Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DBlockInCriticalSectionChecker.cpp124 unsigned mutexCount = State->get<MutexCounter>(); in checkPostCall() local
125 if (isUnlockFunction(Call) && mutexCount > 0) { in checkPostCall()
126 State = State->set<MutexCounter>(--mutexCount); in checkPostCall()
129 State = State->set<MutexCounter>(++mutexCount); in checkPostCall()
131 } else if (mutexCount > 0) { in checkPostCall()