Home | History | Annotate | Download | only in core

Lines Matching full:unref

26     wants to release its reference, it calls unref(). When the shared object's
27 reference count goes to zero as the result of an unref() call, its (virtual)
46 /** Increment the reference count. Must be balanced by a call to unref().
58 void unref() const {
71 * Utility class that simply unref's its argument in the destructor.
83 * so unref() will not be called in our destructor. A subsequent call to
105 before unref(), in case the two pointers point to the same object.
110 if (dst) dst->unref(); \
123 /** Check if the argument is non-null, and if so, call obj->unref()
127 obj->unref();
131 /** Wrapper class for SkRefCnt pointers. This manages ref/unref of a pointer to