Lines Matching refs:falseState
52 ProgramStateRef falseState,
148 ProgramStateRef trueState, falseState; in CheckOpen() local
149 std::tie(trueState, falseState) = state->assume(maskedFlags); in CheckOpen()
153 if (!(trueState && !falseState)) in CheckOpen()
220 ProgramStateRef *falseState) { in IsZeroByteAllocation() argument
221 std::tie(*trueState, *falseState) = in IsZeroByteAllocation()
224 return (*falseState && !*trueState); in IsZeroByteAllocation()
231 ProgramStateRef falseState, in ReportZeroByteAllocation() argument
234 ExplodedNode *N = C.generateErrorNode(falseState); in ReportZeroByteAllocation()
266 ProgramStateRef trueState = nullptr, falseState = nullptr; in BasicAllocationCheck() local
274 if (IsZeroByteAllocation(state, argVal, &trueState, &falseState)) { in BasicAllocationCheck()
275 (void) ReportZeroByteAllocation(C, falseState, arg, fn); in BasicAllocationCheck()
291 ProgramStateRef trueState = nullptr, falseState = nullptr; in CheckCallocZero() local
304 if (IsZeroByteAllocation(state, argVal, &trueState, &falseState)) { in CheckCallocZero()
305 if (ReportZeroByteAllocation(C, falseState, arg, "calloc")) in CheckCallocZero()