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

/external/valgrind/main/memcheck/
H A Dmc_errors.c248 } Leak; member in union:_MC_Error::__anon11333
702 UInt n_this_record = extra->Err.Leak.n_this_record;
703 UInt n_total_records = extra->Err.Leak.n_total_records;
704 LossRecord* lr = extra->Err.Leak.lr;
974 extra.Err.Leak.n_this_record = n_this_record;
975 extra.Err.Leak.n_total_records = n_total_records;
976 extra.Err.Leak.lr = lr;
1402 else if (VG_STREQ(name, "Leak")) skind = LeakSupp;
1507 case Err_Leak: return "Leak";
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp1675 class Leak : public CFRefBug { class in namespace:__anon3088
1678 Leak(StringRef name, bool isRet) function in class:__anon3088::Leak
1690 class LeakAtReturn : public Leak {
1693 : Leak(name, true) {}
1696 class LeakWithinFunction : public Leak {
1699 : Leak(name, false) {}
2350 leakWithinFunctionGC.reset(new LeakWithinFunction("Leak of object when "
2357 leakWithinFunction.reset(new LeakWithinFunction("Leak of object when "
2363 leakWithinFunction.reset(new LeakWithinFunction("Leak"));
2373 leakAtReturnGC.reset(new LeakAtReturn("Leak o
[all...]

Completed in 84 milliseconds