Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Checkers/
DUnixAPIChecker.cpp148 ProgramStateRef trueState, falseState; in CheckOpen() local
149 std::tie(trueState, falseState) = state->assume(maskedFlags); in CheckOpen()
153 if (!(trueState && !falseState)) in CheckOpen()
157 ReportOpenBug(C, trueState, in CheckOpen()
219 ProgramStateRef *trueState, in IsZeroByteAllocation() argument
221 std::tie(*trueState, *falseState) = in IsZeroByteAllocation()
224 return (*falseState && !*trueState); in IsZeroByteAllocation()
266 ProgramStateRef trueState = nullptr, falseState = nullptr; in BasicAllocationCheck() local
274 if (IsZeroByteAllocation(state, argVal, &trueState, &falseState)) { in BasicAllocationCheck()
279 assert(trueState); in BasicAllocationCheck()
[all …]