Home | History | Annotate | Download | only in core

Lines Matching full:unref

22     When an owner wants to release its reference, it calls unref(). When the
23 shared object's reference count goes to zero as the result of an unref()
63 /** Increment the reference count. Must be balanced by a call to unref().
74 void unref() const {
136 before unref(), in case the two pointers point to the same object.
141 if (dst) dst->unref(); \
163 /** Check if the argument is non-null, and if so, call obj->unref()
167 obj->unref();
173 obj->unref();
181 * Utility class that simply unref's its argument in the destructor.
205 * so unref() will not be called in our destructor. A subsequent call to
216 * cannot be deleted, and makes ref and unref private.
223 void unref() const;
231 * for the user to ref or unref through SkAutoTUnref. Therefore
233 * skAutoTUnrefInstance->ref() and skAutoTUnrefInstance->unref().
260 /** Wrapper class for SkRefCnt pointers. This manages ref/unref of a pointer to