HomeSort by relevance Sort by last modified time
    Searched refs:HwBinderDeathRecipient (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/jni/
android_os_HwRemoteBinder.h 31 // HwBinderDeathRecipient objects.
33 class HwBinderDeathRecipient;
36 List< sp<HwBinderDeathRecipient> > mList;
43 void add(const sp<HwBinderDeathRecipient>& recipient);
44 void remove(const sp<HwBinderDeathRecipient>& recipient);
45 sp<HwBinderDeathRecipient> find(jobject recipient);
android_os_HwRemoteBinder.cpp 70 class HwBinderDeathRecipient : public hardware::IBinder::DeathRecipient
73 HwBinderDeathRecipient(JNIEnv* env, jobject object, jlong cookie, const sp<HwBinderDeathRecipientList>& list)
153 virtual ~HwBinderDeathRecipient()
178 for (const sp<HwBinderDeathRecipient>& deathRecipient : mList) {
183 void HwBinderDeathRecipientList::add(const sp<HwBinderDeathRecipient>& recipient) {
189 void HwBinderDeathRecipientList::remove(const sp<HwBinderDeathRecipient>& recipient) {
192 List< sp<HwBinderDeathRecipient> >::iterator iter;
201 sp<HwBinderDeathRecipient> HwBinderDeathRecipientList::find(jobject recipient) {
204 for (const sp<HwBinderDeathRecipient>& deathRecipient : mList) {
366 sp<HwBinderDeathRecipient> jdr = new HwBinderDeathRecipient(env, recipient, cookie, list)
    [all...]

Completed in 709 milliseconds