Lines Matching refs:RefCountBug
42 class UseAfterRelease : public RefCountBug {
45 : RefCountBug(checker, "Use-after-release") {} in UseAfterRelease()
52 class BadRelease : public RefCountBug {
54 BadRelease(const CheckerBase *checker) : RefCountBug(checker, "Bad release") {} in BadRelease()
62 class DeallocNotOwned : public RefCountBug {
65 : RefCountBug(checker, "-dealloc sent to non-exclusively owned object") {} in DeallocNotOwned()
72 class OverAutorelease : public RefCountBug {
75 : RefCountBug(checker, "Object autoreleased too many times") {} in OverAutorelease()
82 class ReturnedNotOwnedForOwned : public RefCountBug {
85 : RefCountBug(checker, "Method should return an owned object") {} in ReturnedNotOwnedForOwned()
93 class Leak : public RefCountBug {
95 Leak(const CheckerBase *checker, StringRef name) : RefCountBug(checker, name) { in Leak()
417 RefCountBug *
424 RefCountBug *
877 RefCountBug *BT; in processNonLeakError()
1365 RefCountBug *BT = Pred ? getLeakWithinFunctionBug(LOpts) in processLeaks()