Lines Matching refs:falseState
80 ProgramStateRef falseState,
249 ProgramStateRef trueState, falseState; in CheckOpenVariant() local
250 std::tie(trueState, falseState) = state->assume(maskedFlags); in CheckOpenVariant()
254 if (!(trueState && !falseState)) in CheckOpenVariant()
327 ProgramStateRef *falseState) { in IsZeroByteAllocation() argument
328 std::tie(*trueState, *falseState) = in IsZeroByteAllocation()
331 return (*falseState && !*trueState); in IsZeroByteAllocation()
339 ProgramStateRef falseState, in ReportZeroByteAllocation() argument
342 ExplodedNode *N = C.generateErrorNode(falseState); in ReportZeroByteAllocation()
375 ProgramStateRef trueState = nullptr, falseState = nullptr; in BasicAllocationCheck() local
383 if (IsZeroByteAllocation(state, argVal, &trueState, &falseState)) { in BasicAllocationCheck()
384 (void) ReportZeroByteAllocation(C, falseState, arg, fn); in BasicAllocationCheck()
400 ProgramStateRef trueState = nullptr, falseState = nullptr; in CheckCallocZero() local
413 if (IsZeroByteAllocation(state, argVal, &trueState, &falseState)) { in CheckCallocZero()
414 if (ReportZeroByteAllocation(C, falseState, arg, "calloc")) in CheckCallocZero()