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