Lines Matching refs:recipient
416 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags) in linkToDeath() argument
439 ob.recipient = recipient; in linkToDeath()
443 LOG_ALWAYS_FATAL_IF(recipient == nullptr, in linkToDeath()
475 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags, in unlinkToDeath() argument
492 if ((obit.recipient == recipient in unlinkToDeath()
493 || (recipient == nullptr && obit.cookie == cookie)) in unlinkToDeath()
496 *outRecipient = mObituaries->itemAt(i).recipient; in unlinkToDeath()
562 sp<DeathRecipient> recipient = obit.recipient.promote(); in reportOneDeath() local
563 ALOGV("Reporting death to recipient: %p\n", recipient.get()); in reportOneDeath()
564 if (recipient == nullptr) return; in reportOneDeath()
566 recipient->binderDied(wp<BpBinder>::fromExisting(this)); in reportOneDeath()