Searched refs:mDeathRecipients (Results 1 – 3 of 3) sorted by relevance
30 private final HashMap<IBinder, IBinder.DeathRecipient> mDeathRecipients; field in TaskFpsCallbackController35 mDeathRecipients = new HashMap<>(); in TaskFpsCallbackController()54 mDeathRecipients.put(binder, deathRecipient); in registerListener()70 binder.unlinkToDeath(mDeathRecipients.get(binder), 0); in unregisterListener()71 mDeathRecipients.remove(binder); in unregisterListener()
1353 mDeathRecipients; field in SensorPrivacyService.SensorPrivacyHandler1358 mDeathRecipients = new ArrayMap<>(); in SensorPrivacyHandler()1448 Pair<DeathRecipient, Integer> deathRecipient = mDeathRecipients.get(listener); in addDeathRecipient()1455 mDeathRecipients.put(listener, deathRecipient); in addDeathRecipient()1459 Pair<DeathRecipient, Integer> deathRecipient = mDeathRecipients.get(listener); in removeDeathRecipient()1465 mDeathRecipients.remove(listener); in removeDeathRecipient()1471 mDeathRecipients.put(listener, deathRecipient); in removeDeathRecipient()
1879 private final ArrayList<IBinder.DeathRecipient> mDeathRecipients = new ArrayList<>(); field in WindowContainerTests.TestBinder1883 for (int i = mDeathRecipients.size() - 1; i >= 0; i--) { in die()1884 final DeathRecipient recipient = mDeathRecipients.get(i); in die()1890 return !mDeathRecipients.isEmpty(); in hasDeathRecipient()1899 mDeathRecipients.add(recipient); in linkToDeath()1904 final boolean successes = mDeathRecipients.remove(recipient); in unlinkToDeath()