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

  /frameworks/base/services/core/java/com/android/server/media/projection/
MediaProjectionManagerService.java 36 import android.os.IBinder.DeathRecipient;
66 private final Map<IBinder, IBinder.DeathRecipient> mDeathEaters;
82 mDeathEaters = new ArrayMap<IBinder, IBinder.DeathRecipient>();
127 IBinder.DeathRecipient deathRecipient = new IBinder.DeathRecipient() {
137 linkDeathRecipientLocked(callback, deathRecipient);
149 IBinder.DeathRecipient deathRecipient) {
152 token.linkToDeath(deathRecipient, 0)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ContextMap.java 19 import android.os.IBinder.DeathRecipient;
68 private IBinder.DeathRecipient mDeathRecipient;
87 void linkToDeath(IBinder.DeathRecipient deathRecipient) {
90 binder.linkToDeath(deathRecipient, 0);
91 mDeathRecipient = deathRecipient;
93 Log.e(TAG, "Unable to link deathRecipient for app id " + id);
106 Log.e(TAG, "Unable to unlink deathRecipient for app id " + id);
  /frameworks/base/services/core/java/com/android/server/am/
ProcessRecord.java 110 IBinder.DeathRecipient deathRecipient; // Who is watching for the death.
470 if (deathRecipient != null && thread != null) {
471 thread.asBinder().unlinkToDeath(deathRecipient, 0);
473 deathRecipient = null;
ActivityManagerService.java 545 abstract class ForegroundToken implements IBinder.DeathRecipient {
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
WindowState.java 94 final DeathRecipient mDeathRecipient;
355 DeathRecipient deathRecipient = new DeathRecipient();
362 c.asBinder().linkToDeath(deathRecipient, 0);
376 mDeathRecipient = deathRecipient;
    [all...]
WindowManagerService.java 485 IBinder.DeathRecipient deathRecipient;
486 RotationWatcher(IRotationWatcher w, IBinder.DeathRecipient d) {
488 deathRecipient = d;
    [all...]

Completed in 70 milliseconds