Home | History | Annotate | Download | only in hidl

Lines Matching refs:recipient

43             const sp<IBinder::DeathRecipient>& recipient,
47 const wp<IBinder::DeathRecipient>& recipient,
55 wp<IBinder::DeathRecipient> recipient;
63 recipient(r), cookie(c), flags(f), who(w) {
66 recipient(o.recipient),
72 recipient = o.recipient;
79 sp<IBinder::DeathRecipient> dr = recipient.promote();
95 const sp<IBinder::DeathRecipient>& recipient,
97 LOG_ALWAYS_FATAL_IF(recipient == nullptr,
98 "linkToDeath(): recipient must be non-nullptr");
101 mObituaries.push_back(new Obituary(recipient, cookie, flags, this));
115 const wp<IBinder::DeathRecipient>& recipient,
121 (recipient == (*i)->recipient) ||
122 ((recipient == nullptr) && (cookie == (*i)->cookie)))) {
124 *outRecipient = (*i)->recipient;