Lines Matching refs:recipient
175 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags) in linkToDeath() argument
178 ob.recipient = recipient; in linkToDeath()
182 LOG_ALWAYS_FATAL_IF(recipient == NULL, in linkToDeath()
209 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags, in unlinkToDeath() argument
221 if ((obit.recipient == recipient in unlinkToDeath()
222 || (recipient == NULL && obit.cookie == cookie)) in unlinkToDeath()
225 *outRecipient = mObituaries->itemAt(i).recipient; in unlinkToDeath()
278 sp<DeathRecipient> recipient = obit.recipient.promote(); in reportOneDeath() local
279 ALOGV("Reporting death to recipient: %p\n", recipient.get()); in reportOneDeath()
280 if (recipient == NULL) return; in reportOneDeath()
282 recipient->binderDied(this); in reportOneDeath()