Searched refs:trueState (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | UnixAPIChecker.cpp | 289 ProgramStateRef trueState, falseState; in CheckOpenVariant() local 290 std::tie(trueState, falseState) = state->assume(maskedFlags); in CheckOpenVariant() 294 if (!(trueState && !falseState)) in CheckOpenVariant() 304 ReportOpenBug(C, trueState, in CheckOpenVariant() 451 ProgramStateRef *trueState, in IsZeroByteAllocation() argument 453 std::tie(*trueState, *falseState) = in IsZeroByteAllocation() 456 return (*falseState && !*trueState); in IsZeroByteAllocation() 497 ProgramStateRef trueState = nullptr, falseState = nullptr; in BasicAllocationCheck() local 505 if (IsZeroByteAllocation(state, argVal, &trueState, &falseState)) { in BasicAllocationCheck() 510 assert(trueState); in BasicAllocationCheck() [all …]
|