Searched defs:Leak (Results 1 - 2 of 2) sorted by relevance

/external/valgrind/main/memcheck/
H A Dmc_errors.c249 } Leak; member in union:_MC_Error::__anon12700
718 UInt n_this_record = extra->Err.Leak.n_this_record;
719 UInt n_total_records = extra->Err.Leak.n_total_records;
720 LossRecord* lr = extra->Err.Leak.lr;
996 extra.Err.Leak.n_this_record = n_this_record;
997 extra.Err.Leak.n_total_records = n_total_records;
998 extra.Err.Leak.lr = lr;
1434 else if (VG_STREQ(name, "Leak")) skind = LeakSupp;
1555 case Err_Leak: return "Leak";
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp1692 class Leak : public CFRefBug { class in namespace:__anon3463
1695 Leak(StringRef name, bool isRet) function in class:__anon3463::Leak
1707 class LeakAtReturn : public Leak {
1710 : Leak(name, true) {}
1713 class LeakWithinFunction : public Leak {
1716 : Leak(name, false) {}
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 o
[all...]

Completed in 67 milliseconds