Lines Matching refs:who
85 const flat_binder_object& obj, const void* who) in acquire_binder_object() argument
90 LOG_REFS("Parcel %p acquiring reference on local %llu", who, obj.cookie); in acquire_binder_object()
91 reinterpret_cast<IBinder*>(obj.cookie)->incStrong(who); in acquire_binder_object()
96 reinterpret_cast<RefBase::weakref_type*>(obj.binder)->incWeak(who); in acquire_binder_object()
101 LOG_REFS("Parcel %p acquiring reference on remote %p", who, b.get()); in acquire_binder_object()
102 b->incStrong(who); in acquire_binder_object()
108 if (b != nullptr) b.get_refs()->incWeak(who); in acquire_binder_object()
117 const void *who) { in acquire_object() argument
124 acquire_binder_object(proc, fbo, who); in acquire_object()
131 const flat_binder_object& obj, const void* who) in release_object() argument
136 LOG_REFS("Parcel %p releasing reference on local %llu", who, obj.cookie); in release_object()
137 reinterpret_cast<IBinder*>(obj.cookie)->decStrong(who); in release_object()
142 reinterpret_cast<RefBase::weakref_type*>(obj.binder)->decWeak(who); in release_object()
147 LOG_REFS("Parcel %p releasing reference on remote %p", who, b.get()); in release_object()
148 b->decStrong(who); in release_object()
154 if (b != nullptr) b.get_refs()->decWeak(who); in release_object()