HomeSort by relevance Sort by last modified time
    Searched defs:deathRecipient (Results 1 - 4 of 4) 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>();
132 IBinder.DeathRecipient deathRecipient = new IBinder.DeathRecipient() {
142 linkDeathRecipientLocked(callback, deathRecipient);
154 IBinder.DeathRecipient deathRecipient) {
157 token.linkToDeath(deathRecipient, 0)
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ProcessRecord.java 113 IBinder.DeathRecipient deathRecipient; // Who is watching for the death.
483 if (deathRecipient != null && thread != null) {
484 thread.asBinder().unlinkToDeath(deathRecipient, 0);
486 deathRecipient = null;
  /frameworks/base/services/core/java/com/android/server/wm/
WindowState.java 95 final DeathRecipient mDeathRecipient;
376 DeathRecipient deathRecipient = new DeathRecipient();
383 c.asBinder().linkToDeath(deathRecipient, 0);
397 mDeathRecipient = deathRecipient;
    [all...]
WindowManagerService.java 489 IBinder.DeathRecipient deathRecipient;
490 RotationWatcher(IRotationWatcher w, IBinder.DeathRecipient d) {
492 deathRecipient = d;
    [all...]

Completed in 200 milliseconds