Searched refs:LState (Results 1 - 2 of 2) sorted by relevance

/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DPthreadLockChecker.cpp413 if (const LockState *LState = state->get<LockMap>(lockR)) {
414 if (LState->isLocked()) {
418 } else if (LState->isDestroyed()) {
491 if (const LockState *LState = state->get<LockMap>(lockR)) {
492 if (LState->isUnlocked()) {
496 } else if (LState->isDestroyed()) {
553 const LockState *LState = State->get<LockMap>(LockR); local
557 if (!LState || LState->isUnlocked()) {
565 if (LState
610 const struct LockState *LState = State->get<LockMap>(LockR); local
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Analysis/
H A DConsumed.cpp956 ConsumedState LState = LTest.Var ? ThenStates->getState(LTest.Var) : CS_None, local
961 if (LState == CS_Unknown) {
963 } else if (LState == invertConsumedUnconsumed(LTest.TestsFor)) {
965 } else if (LState == LTest.TestsFor && isKnownState(RState)) {
972 if (LState == CS_Unknown) {
975 } else if (LState == LTest.TestsFor) {
977 } else if (LState == invertConsumedUnconsumed(LTest.TestsFor) &&

Completed in 186 milliseconds