Home
last modified time | relevance | path

Searched refs:Leaked (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.cpp1275 SmallVectorImpl<SymbolRef> &Leaked) const { in handleSymbolDeath()
1296 Leaked.push_back(sid); in handleSymbolDeath()
1302 SmallVectorImpl<SymbolRef> &Leaked, in processLeaks() argument
1310 for (SymbolRef L : Leaked) { in processLeaks()
1388 SmallVector<SymbolRef, 10> Leaked; in checkEndFunction() local
1391 state = handleSymbolDeath(state, I.first, I.second, Leaked); in checkEndFunction()
1393 processLeaks(state, Leaked, Ctx, Pred); in checkEndFunction()
1401 SmallVector<SymbolRef, 10> Leaked; in checkDeadSymbols() local
1414 state = handleSymbolDeath(state, Sym, *getRefBinding(state, Sym), Leaked); in checkDeadSymbols()
1418 if (Leaked.empty()) { in checkDeadSymbols()
[all …]
H A DRetainCountChecker.h348 SmallVectorImpl<SymbolRef> &Leaked) const;
357 SmallVectorImpl<SymbolRef> &Leaked,