reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
 2884   RegionStateTy RS = state->get<RegionState>();
 2887     ConstraintManager &CMgr = state->getConstraintManager();
 2888     ConditionTruthVal AllocFailed = CMgr.isNull(state, I.getKey());
 2890       state = state->remove<RegionState>(I.getKey());
 2890       state = state->remove<RegionState>(I.getKey());
 2895   ReallocPairsTy RP = state->get<ReallocPairs>();
 2898     ConstraintManager &CMgr = state->getConstraintManager();
 2899     ConditionTruthVal AllocFailed = CMgr.isNull(state, I.getKey());
 2904     if (const RefState *RS = state->get<RegionState>(ReallocSym)) {
 2908           state = state->set<RegionState>(ReallocSym,
 2908           state = state->set<RegionState>(ReallocSym,
 2912           state = state->remove<RegionState>(ReallocSym);
 2912           state = state->remove<RegionState>(ReallocSym);
 2919     state = state->remove<ReallocPairs>(I.getKey());
 2919     state = state->remove<ReallocPairs>(I.getKey());
 2922   return state;