Home | History | Annotate | Download | only in Checkers

Lines Matching refs:Owned

155     Owned = 0, // Owning reference.
156 NotOwned, // Reference is not owned by still valid (not freed).
161 ErrorDeallocNotOwned, // -dealloc called on non-owned object.
164 ErrorReleaseNotOwned, // Release of an object that was not owned.
199 return getKind() == Owned;
216 return RefVal(Owned, o, Count, 0, t);
266 case Owned: {
267 Out << "Owned";
303 Out << "-dealloc (not-owned)";
323 Out << "Release of Not-Owned [ERROR]";
331 Out << "Non-owned object returned instead of owned";
1579 // For NSWindow, allocated objects are (initially) self-owned.
1592 // self-owned.
1658 "not owned at this point by the caller";
1675 : CFRefBug("-dealloc sent to non-exclusively owned object") {}
1695 : CFRefBug("Method should return an owned object") {}
2064 case RefVal::Owned:
2964 case RefVal::Owned:
2977 if (V.getKind() == RefVal::Owned) {
3002 case RefVal::Owned:
3009 V = (V ^ RefVal::Owned) + 1;
3022 case RefVal::Owned:
3211 case RefVal::Owned: {
3326 // Trying to return a not owned object to a caller expecting an
3327 // owned object.