Lines Matching refs:recipient
291 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags) in linkToDeath() argument
296 ob.recipient = recipient; in linkToDeath()
300 LOG_ALWAYS_FATAL_IF(recipient == nullptr, in linkToDeath()
328 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags, in unlinkToDeath() argument
342 if ((obit.recipient == recipient in unlinkToDeath()
343 || (recipient == nullptr && obit.cookie == cookie)) in unlinkToDeath()
346 *outRecipient = mObituaries->itemAt(i).recipient; in unlinkToDeath()
401 sp<DeathRecipient> recipient = obit.recipient.promote(); in reportOneDeath() local
402 ALOGV("Reporting death to recipient: %p\n", recipient.get()); in reportOneDeath()
403 if (recipient == nullptr) return; in reportOneDeath()
405 recipient->binderDied(wp<BpBinder>::fromExisting(this)); in reportOneDeath()