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

  /frameworks/support/customtabs/src/android/support/customtabs/
CustomTabsService.java 24 import android.os.IBinder.DeathRecipient;
53 private final Map<IBinder, DeathRecipient> mDeathRecipientMap = new ArrayMap<>();
66 DeathRecipient deathRecipient = new IBinder.DeathRecipient() {
73 callback.asBinder().linkToDeath(deathRecipient, 0);
74 mDeathRecipientMap.put(callback.asBinder(), deathRecipient);
108 * Can also be used to clean up {@link DeathRecipient} instances allocated for the given token.
109 * @param sessionToken The session token for which the {@link DeathRecipient} call has been
118 DeathRecipient deathRecipient
    [all...]
  /packages/services/Car/service/src/com/android/car/
CarRadioService.java 54 class RadioDeathRecipient implements IBinder.DeathRecipient {
87 RadioDeathRecipient deathRecipient = mDeathRecipientMap.get(listenerBinder);
88 deathRecipient.release();
119 RadioDeathRecipient deathRecipient = new RadioDeathRecipient(listenerBinder);
121 listenerBinder.linkToDeath(deathRecipient, 0);
126 mDeathRecipientMap.put(listenerBinder, deathRecipient);
CarHvacService.java 53 class HvacDeathRecipient implements IBinder.DeathRecipient {
113 HvacDeathRecipient deathRecipient = new HvacDeathRecipient(listenerBinder);
115 listenerBinder.linkToDeath(deathRecipient, 0);
120 mDeathRecipientMap.put(listenerBinder, deathRecipient);
  /frameworks/base/services/core/java/com/android/server/media/projection/
MediaProjectionManagerService.java 61 private final Map<IBinder, IBinder.DeathRecipient> mDeathEaters;
77 mDeathEaters = new ArrayMap<IBinder, IBinder.DeathRecipient>();
127 IBinder.DeathRecipient deathRecipient = new IBinder.DeathRecipient() {
135 linkDeathRecipientLocked(callback, deathRecipient);
147 IBinder.DeathRecipient deathRecipient) {
150 token.linkToDeath(deathRecipient, 0);
151 mDeathEaters.put(token, deathRecipient);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ContextMap.java 21 import android.os.IBinder.DeathRecipient;
81 private IBinder.DeathRecipient mDeathRecipient;
102 void linkToDeath(IBinder.DeathRecipient deathRecipient) {
105 binder.linkToDeath(deathRecipient, 0);
106 mDeathRecipient = deathRecipient;
108 Log.e(TAG, "Unable to link deathRecipient for app id " + id);
121 Log.e(TAG, "Unable to unlink deathRecipient for app id " + id);
  /system/security/keystore/
operation.h 49 OperationMap(IBinder::DeathRecipient* deathRecipient);
86 IBinder::DeathRecipient* mDeathRecipient;
operation.cpp 23 OperationMap::OperationMap(IBinder::DeathRecipient* deathRecipient)
24 : mDeathRecipient(deathRecipient) {}
  /frameworks/base/services/core/java/com/android/server/am/
ProcessRecord.java 132 IBinder.DeathRecipient deathRecipient; // Who is watching for the death.
529 if (deathRecipient != null && thread != null) {
530 thread.asBinder().unlinkToDeath(deathRecipient, 0);
532 deathRecipient = null;
    [all...]
ActivityManagerService.java     [all...]
  /prebuilts/sdk/current/support/customtabs/libs/
android-support-customtabs.jar 
  /frameworks/base/services/core/java/com/android/server/wm/
WindowState.java 152 final DeathRecipient mDeathRecipient;
525 DeathRecipient deathRecipient = new DeathRecipient();
532 c.asBinder().linkToDeath(deathRecipient, 0);
546 mDeathRecipient = deathRecipient;
    [all...]
WindowManagerService.java 561 IBinder.DeathRecipient deathRecipient;
562 RotationWatcher(IRotationWatcher w, IBinder.DeathRecipient d) {
564 deathRecipient = d;
    [all...]

Completed in 566 milliseconds