Lines Matching refs:who
74 const flat_binder_object& obj, const void* who)
79 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie);
80 static_cast<IBinder*>(obj.cookie)->incStrong(who);
85 static_cast<RefBase::weakref_type*>(obj.binder)->incWeak(who);
90 LOG_REFS("Parcel %p acquiring reference on remote %p", who, b.get());
91 b->incStrong(who);
97 if (b != NULL) b.get_refs()->incWeak(who);
111 const flat_binder_object& obj, const void* who)
116 LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie);
117 static_cast<IBinder*>(obj.cookie)->decStrong(who);
122 static_cast<RefBase::weakref_type*>(obj.binder)->decWeak(who);
127 LOG_REFS("Parcel %p releasing reference on remote %p", who, b.get());
128 b->decStrong(who);
134 if (b != NULL) b.get_refs()->decWeak(who);