Home | History | Annotate | Download | only in binder

Lines Matching refs:recipient

175     const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags)
178 ob.recipient = recipient;
182 LOG_ALWAYS_FATAL_IF(recipient == NULL,
183 "linkToDeath(): recipient must be non-NULL");
209 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags,
221 if ((obit.recipient == recipient
222 || (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);