Lines Matching refs:who
99 const flat_binder_object& obj, const void* who) in acquire_object() argument
104 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie); in acquire_object()
105 reinterpret_cast<IBinder*>(obj.cookie)->incStrong(who); in acquire_object()
110 reinterpret_cast<RefBase::weakref_type*>(obj.binder)->incWeak(who); in acquire_object()
115 LOG_REFS("Parcel %p acquiring reference on remote %p", who, b.get()); in acquire_object()
116 b->incStrong(who); in acquire_object()
122 if (b != NULL) b.get_refs()->incWeak(who); in acquire_object()
136 const flat_binder_object& obj, const void* who) in release_object() argument
141 LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie); in release_object()
142 reinterpret_cast<IBinder*>(obj.cookie)->decStrong(who); in release_object()
147 reinterpret_cast<RefBase::weakref_type*>(obj.binder)->decWeak(who); in release_object()
152 LOG_REFS("Parcel %p releasing reference on remote %p", who, b.get()); in release_object()
153 b->decStrong(who); in release_object()
159 if (b != NULL) b.get_refs()->decWeak(who); in release_object()