Searched refs:deathRecipient (Results 1 – 6 of 6) sorted by relevance
/frameworks/support/customtabs/src/android/support/customtabs/ |
D | CustomTabsService.java | 66 DeathRecipient deathRecipient = new IBinder.DeathRecipient() { 73 callback.asBinder().linkToDeath(deathRecipient, 0); 74 mDeathRecipientMap.put(callback.asBinder(), deathRecipient); 112 DeathRecipient deathRecipient = in cleanUpSession() local 114 binder.unlinkToDeath(deathRecipient, 0); in cleanUpSession()
|
/frameworks/base/services/core/java/com/android/server/media/projection/ |
D | MediaProjectionManagerService.java | 127 IBinder.DeathRecipient deathRecipient = new IBinder.DeathRecipient() { in addCallback() local 135 linkDeathRecipientLocked(callback, deathRecipient); in addCallback() 147 IBinder.DeathRecipient deathRecipient) { in linkDeathRecipientLocked() argument 150 token.linkToDeath(deathRecipient, 0); in linkDeathRecipientLocked() 151 mDeathEaters.put(token, deathRecipient); in linkDeathRecipientLocked() 159 IBinder.DeathRecipient deathRecipient = mDeathEaters.remove(token); in unlinkDeathRecipientLocked() local 160 if (deathRecipient != null) { in unlinkDeathRecipientLocked() 161 token.unlinkToDeath(deathRecipient, 0); in unlinkDeathRecipientLocked()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | ProcessRecord.java | 123 IBinder.DeathRecipient deathRecipient; // Who is watching for the death. field in ProcessRecord 499 if (deathRecipient != null && thread != null) { in unlinkDeathRecipient() 500 thread.asBinder().unlinkToDeath(deathRecipient, 0); in unlinkDeathRecipient() 502 deathRecipient = null; in unlinkDeathRecipient()
|
D | ActivityManagerService.java | 6009 app.deathRecipient = adr; in attachApplicationLocked()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | WindowState.java | 398 DeathRecipient deathRecipient = new DeathRecipient(); in WindowState() local 405 c.asBinder().linkToDeath(deathRecipient, 0); in WindowState() 419 mDeathRecipient = deathRecipient; in WindowState()
|
D | WindowManagerService.java | 478 IBinder.DeathRecipient deathRecipient; field in WindowManagerService.RotationWatcher 481 deathRecipient = d; in RotationWatcher() 6742 binder.unlinkToDeath(removed.deathRecipient, 0); in removeRotationWatcher()
|