Lines Matching refs:recipient
122 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags) in linkToDeath() argument
125 ob.recipient = recipient; in linkToDeath()
129 LOG_ALWAYS_FATAL_IF(recipient == nullptr, in linkToDeath()
156 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags, in unlinkToDeath() argument
168 if ((obit.recipient == recipient in unlinkToDeath()
169 || (recipient == nullptr && obit.cookie == cookie)) in unlinkToDeath()
172 *outRecipient = mObituaries->itemAt(i).recipient; in unlinkToDeath()
232 sp<DeathRecipient> recipient = obit.recipient.promote(); in reportOneDeath() local
233 ALOGV("Reporting death to recipient: %p\n", recipient.get()); in reportOneDeath()
234 if (recipient == nullptr) return; in reportOneDeath()
236 recipient->binderDied(this); in reportOneDeath()