Searched defs:deathRecipient (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/services/core/java/com/android/server/media/projection/
H A DMediaProjectionManagerService.java127 IBinder.DeathRecipient deathRecipient = new IBinder.DeathRecipient() {
135 linkDeathRecipientLocked(callback, deathRecipient);
147 IBinder.DeathRecipient deathRecipient) {
150 token.linkToDeath(deathRecipient, 0);
151 mDeathEaters.put(token, deathRecipient);
159 IBinder.DeathRecipient deathRecipient = mDeathEaters.remove(token);
160 if (deathRecipient != null) {
161 token.unlinkToDeath(deathRecipient, 0);
146 linkDeathRecipientLocked(IMediaProjectionWatcherCallback callback, IBinder.DeathRecipient deathRecipient) argument
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessRecord.java132 IBinder.DeathRecipient deathRecipient; // Who is watching for the death. field in class:ProcessRecord
529 if (deathRecipient != null && thread != null) {
530 thread.asBinder().unlinkToDeath(deathRecipient, 0);
532 deathRecipient = null;
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java561 IBinder.DeathRecipient deathRecipient; field in class:WindowManagerService.RotationWatcher
564 deathRecipient = d;
6774 binder.unlinkToDeath(removed.deathRecipient, 0);

Completed in 1421 milliseconds