Lines Matching full:who
61 const flat_binder_object& obj, const void* who)
66 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie);
67 static_cast<IBinder*>(obj.cookie)->incStrong(who);
72 static_cast<RefBase::weakref_type*>(obj.binder)->incWeak(who);
77 LOG_REFS("Parcel %p acquiring reference on remote %p", who, b.get());
78 b->incStrong(who);
84 if (b != NULL) b.get_refs()->incWeak(who);
98 const flat_binder_object& obj, const void* who)
103 LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie);
104 static_cast<IBinder*>(obj.cookie)->decStrong(who);
109 static_cast<RefBase::weakref_type*>(obj.binder)->decWeak(who);
114 LOG_REFS("Parcel %p releasing reference on remote %p", who, b.get());
115 b->decStrong(who);
121 if (b != NULL) b.get_refs()->decWeak(who);