Lines Matching refs:who
73 const flat_binder_object& obj, const void* who)
78 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie);
79 static_cast<IBinder*>(obj.cookie)->incStrong(who);
84 static_cast<RefBase::weakref_type*>(obj.binder)->incWeak(who);
89 LOG_REFS("Parcel %p acquiring reference on remote %p", who, b.get());
90 b->incStrong(who);
96 if (b != NULL) b.get_refs()->incWeak(who);
110 const flat_binder_object& obj, const void* who)
115 LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie);
116 static_cast<IBinder*>(obj.cookie)->decStrong(who);
121 static_cast<RefBase::weakref_type*>(obj.binder)->decWeak(who);
126 LOG_REFS("Parcel %p releasing reference on remote %p", who, b.get());
127 b->decStrong(who);
133 if (b != NULL) b.get_refs()->decWeak(who);