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

  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ContextMap.java 19 import android.os.IBinder.DeathRecipient;
68 private IBinder.DeathRecipient mDeathRecipient;
81 void linkToDeath(IBinder.DeathRecipient deathRecipient) {
84 binder.linkToDeath(deathRecipient, 0);
85 mDeathRecipient = deathRecipient;
87 Log.e(TAG, "Unable to link deathRecipient for app id " + id);
100 Log.e(TAG, "Unable to unlink deathRecipient for app id " + id);
  /frameworks/base/services/java/com/android/server/am/
ProcessRecord.java 94 IBinder.DeathRecipient deathRecipient; // Who is watching for the death.
375 if (deathRecipient != null && thread != null) {
376 thread.asBinder().unlinkToDeath(deathRecipient, 0);
378 deathRecipient = null;
ActivityManagerService.java 415 abstract class ForegroundToken implements IBinder.DeathRecipient {
877 private final class AppDeathRecipient implements IBinder.DeathRecipient {
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
WindowState.java 90 final DeathRecipient mDeathRecipient;
331 DeathRecipient deathRecipient = new DeathRecipient();
338 c.asBinder().linkToDeath(deathRecipient, 0);
352 mDeathRecipient = deathRecipient;
    [all...]

Completed in 155 milliseconds