Home | History | Annotate | Download | only in core

Lines Matching full:unref

21     When an owner wants to release its reference, it calls unref(). When the
22 shared object's reference count goes to zero as the result of an unref()
60 /** Increment the reference count. Must be balanced by a call to unref().
71 void unref() const {
133 before unref(), in case the two pointers point to the same object.
138 if (dst) dst->unref(); \
160 /** Check if the argument is non-null, and if so, call obj->unref()
164 obj->unref();
170 obj->unref();
178 * Utility class that simply unref's its argument in the destructor.
202 * so unref() will not be called in our destructor. A subsequent call to
213 * cannot be deleted, and makes ref and unref private.
220 void unref() const;
228 * for the user to ref or unref through SkAutoTUnref. Therefore
230 * skAutoTUnrefInstance->ref() and skAutoTUnrefInstance->unref().
257 /** Wrapper class for SkRefCnt pointers. This manages ref/unref of a pointer to