Home | History | Annotate | Download | only in Checkers

Lines Matching refs:Leak

160     ErrorLeak,  // A memory leak due to excessive reference counts.
161 ErrorLeakReturned, // A memory leak due to the returning method not having
1692 class Leak : public CFRefBug {
1695 Leak(StringRef name, bool isRet)
1707 class LeakAtReturn : public Leak {
1710 : Leak(name, true) {}
1713 class LeakWithinFunction : public Leak {
1716 : Leak(name, false) {}
2136 // the leak.
2163 // If allocation happened in a function different from the leak node context,
2189 // We are reporting a leak. Walk up the graph to get to the first node where
2200 // Compute an actual location for the leak. Sometimes a leak doesn't
2286 os << "Potential leak ";
2385 leakWithinFunctionGC.reset(new LeakWithinFunction("Leak of object when "
2392 leakWithinFunction.reset(new LeakWithinFunction("Leak of object when "
2398 leakWithinFunction.reset(new LeakWithinFunction("Leak"));
2408 leakAtReturnGC.reset(new LeakAtReturn("Leak of returned object when "
2414 leakAtReturn.reset(new LeakAtReturn("Leak of returned object when "
2418 leakAtReturn.reset(new LeakAtReturn("Leak of returned object"));
3271 // a leak (as the caller expects a GC'ed object) because no
3525 // Generate an intermediate node representing the leak point.