Home | History | Annotate | Download | only in binder

Lines Matching defs:recipient

174     const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags)
177 ob.recipient = recipient;
181 LOG_ALWAYS_FATAL_IF(recipient == NULL,
182 "linkToDeath(): recipient must be non-NULL");
208 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags,
220 if ((obit.recipient == recipient
221 || (recipient == NULL && obit.cookie == cookie))
225 *outRecipient = mObituaries->itemAt(i).recipient;
278 sp<DeathRecipient> recipient = obit.recipient.promote();
279 ALOGV("Reporting death to recipient: %p\n", recipient.get());
280 if (recipient == NULL) return;
282 recipient->binderDied(this);