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