Lines Matching refs:falseState
72 ProgramStateRef falseState,
214 ProgramStateRef trueState, falseState; in CheckOpenVariant() local
215 std::tie(trueState, falseState) = state->assume(maskedFlags); in CheckOpenVariant()
219 if (!(trueState && !falseState)) in CheckOpenVariant()
290 ProgramStateRef *falseState) { in IsZeroByteAllocation() argument
291 std::tie(*trueState, *falseState) = in IsZeroByteAllocation()
294 return (*falseState && !*trueState); in IsZeroByteAllocation()
301 ProgramStateRef falseState, in ReportZeroByteAllocation() argument
304 ExplodedNode *N = C.generateErrorNode(falseState); in ReportZeroByteAllocation()
336 ProgramStateRef trueState = nullptr, falseState = nullptr; in BasicAllocationCheck() local
344 if (IsZeroByteAllocation(state, argVal, &trueState, &falseState)) { in BasicAllocationCheck()
345 (void) ReportZeroByteAllocation(C, falseState, arg, fn); in BasicAllocationCheck()
361 ProgramStateRef trueState = nullptr, falseState = nullptr; in CheckCallocZero() local
374 if (IsZeroByteAllocation(state, argVal, &trueState, &falseState)) { in CheckCallocZero()
375 if (ReportZeroByteAllocation(C, falseState, arg, "calloc")) in CheckCallocZero()