Home | History | Annotate | Download | only in Checkers

Lines Matching refs:Leak

166     ErrorLeak,  // A memory leak due to excessive reference counts.
167 ErrorLeakReturned, // A memory leak due to the returning method not having
1703 class Leak : public CFRefBug {
1705 Leak(StringRef name)
2159 // the leak.
2185 // If allocation happened in a function different from the leak node context,
2212 // We are reporting a leak. Walk up the graph to get to the first node where
2223 // Compute an actual location for the leak. Sometimes a leak doesn't
2325 os << "Potential leak ";
2420 leakWithinFunctionGC.reset(new Leak("Leak of object when using "
2426 leakWithinFunction.reset(new Leak("Leak of object when not using "
2430 leakWithinFunction.reset(new Leak("Leak"));
2440 leakAtReturnGC.reset(new Leak("Leak of returned object when using "
2446 leakAtReturn.reset(new Leak("Leak of returned object when not using "
2450 leakAtReturn.reset(new Leak("Leak of returned object"));
3293 // a leak (as the caller expects a GC'ed object) because no
3545 // Generate an intermediate node representing the leak point.