HomeSort by relevance Sort by last modified time
    Searched defs:DeathRecipient (Results 1 - 25 of 42) sorted by null

1 2

  /system/libhwbinder/include/hwbinder/
IBinder.h 60 class DeathRecipient : public virtual RefBase
70 * then DeathRecipient::binderDied() will be called with a reference
88 virtual status_t linkToDeath(const sp<DeathRecipient>& recipient,
99 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
102 wp<DeathRecipient>* outRecipient = NULL) = 0;
  /frameworks/base/core/java/android/os/
IHwBinder.java 53 public interface DeathRecipient {
71 public boolean linkToDeath(DeathRecipient recipient, long cookie);
78 public boolean unlinkToDeath(DeathRecipient recipient);
IBinder.java 82 * a {@link DeathRecipient} with the IBinder, which will be called when its
271 public interface DeathRecipient {
279 * then the given {@link DeathRecipient}'s
280 * {@link DeathRecipient#binderDied DeathRecipient.binderDied()} method
291 public void linkToDeath(@NonNull DeathRecipient recipient, int flags)
301 * {@link DeathRecipient#binderDied DeathRecipient.binderDied()} method
312 public boolean unlinkToDeath(@NonNull DeathRecipient recipient, int flags);
  /frameworks/native/libs/binder/include/binder/
IBinder.h 94 // DeathRecipient is pure abstract, there is no virtual method
102 class DeathRecipient : public virtual RefBase
116 * then DeathRecipient::binderDied() will be called with a reference
134 virtual status_t linkToDeath(const sp<DeathRecipient>& recipient,
145 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
148 wp<DeathRecipient>* outRecipient = NULL) = 0;
  /system/core/libbinderwrapper/
real_binder_wrapper.cc 30 class RealBinderWrapper::DeathRecipient : public IBinder::DeathRecipient {
32 explicit DeathRecipient(const ::base::Closure& callback)
34 ~DeathRecipient() = default;
36 // IBinder::DeathRecipient:
45 DISALLOW_COPY_AND_ASSIGN(DeathRecipient);
89 sp<DeathRecipient> recipient(new DeathRecipient(callback));
  /device/google/contexthub/contexthubhal/
NanohubHidlAdapter.h 84 class DeathRecipient : public hidl_death_recipient {
86 DeathRecipient(const sp<Contexthub> contexthub);
98 sp<DeathRecipient> mDeathRecipient;
NanohubHidlAdapter.cpp 51 : mDeathRecipient(new DeathRecipient(this)),
104 Contexthub::DeathRecipient::DeathRecipient(sp<Contexthub> contexthub)
107 void Contexthub::DeathRecipient::serviceDied(
  /hardware/interfaces/contexthub/1.0/default/
Contexthub.h 72 class DeathRecipient : public hidl_death_recipient {
74 DeathRecipient(const sp<Contexthub> contexthub);
88 sp<DeathRecipient> mDeathRecipient;
Contexthub.cpp 41 mDeathRecipient(new DeathRecipient(this)),
114 Contexthub::DeathRecipient::DeathRecipient(sp<Contexthub> contexthub)
117 void Contexthub::DeathRecipient::serviceDied(
  /hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
SubscriptionManager.h 94 mCallbackDeathRecipient(new DeathRecipient(
141 class DeathRecipient : public hidl_death_recipient {
143 DeathRecipient(const OnClientDead& onClientDead)
145 ~DeathRecipient() = default;
147 DeathRecipient(const DeathRecipient& ) = delete;
148 DeathRecipient& operator=(const DeathRecipient&) = delete;
168 sp<DeathRecipient> mCallbackDeathRecipient;
  /system/chre/host/hal_generic/
generic_context_hub.h 114 class DeathRecipient : public hidl_death_recipient {
116 DeathRecipient(const sp<GenericContextHub> contexthub);
126 sp<DeathRecipient> mDeathRecipient;
generic_context_hub.cc 73 GenericContextHub::DeathRecipient::DeathRecipient(
76 void GenericContextHub::DeathRecipient::serviceDied(
90 mDeathRecipient = new DeathRecipient(this);
  /frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/
AnnouncementAggregator.java 40 private final IBinder.DeathRecipient mDeathRecipient = new DeathRecipient();
75 private class DeathRecipient implements IBinder.DeathRecipient {
  /frameworks/base/services/usb/java/com/android/server/usb/
UsbPortManager.java 498 final class DeathRecipient implements HwBinder.DeathRecipient {
501 DeathRecipient(IndentingPrintWriter pw) {
532 mProxy.linkToDeath(new DeathRecipient(pw), USB_HAL_DEATH_COOKIE);
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
WindowState.java 245 final DeathRecipient mDeathRecipient;
712 DeathRecipient deathRecipient = new DeathRecipient();
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-8.0.0_r4-robolectric-0.jar 
android-all-o-preview-4-robolectric-0.jar 
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 

Completed in 353 milliseconds

1 2