HomeSort by relevance Sort by last modified time
    Searched refs:DeathRecipient (Results 26 - 50 of 291) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/native/services/thermalservice/
ThermalService.h 31 public IBinder::DeathRecipient {
  /frameworks/native/services/vr/hardware_composer/
vr_composer.h 21 public IBinder::DeathRecipient {
36 // IBinder::DeathRecipient:
  /system/core/healthd/
BatteryPropertiesRegistrar.h 31 public IBinder::DeathRecipient {
  /packages/services/Car/service/src/com/android/car/
CarTestService.java 78 TokenDeathRecipient deathRecipient = new TokenDeathRecipient(token);
79 mTokens.put(token, deathRecipient);
80 token.linkToDeath(deathRecipient, 0);
97 DeathRecipient deathRecipient = mTokens.remove(token);
98 if (deathRecipient != null) {
99 token.unlinkToDeath(deathRecipient, 0);
107 private class TokenDeathRecipient implements DeathRecipient {
  /frameworks/base/telephony/java/android/telephony/mbms/vendor/
MbmsDownloadServiceBase.java 47 private final Map<IBinder, DeathRecipient> mDownloadCallbackDeathRecipients = new HashMap<>();
117 callback.asBinder().linkToDeath(new DeathRecipient() {
243 DeathRecipient deathRecipient = new DeathRecipient() {
251 mDownloadCallbackDeathRecipients.put(callback.asBinder(), deathRecipient);
252 callback.asBinder().linkToDeath(deathRecipient, 0);
295 DeathRecipient deathRecipient =
297 if (deathRecipient == null)
    [all...]
MbmsStreamingServiceBase.java 69 callback.asBinder().linkToDeath(new DeathRecipient() {
156 callback.asBinder().linkToDeath(new DeathRecipient() {
  /frameworks/base/core/java/android/database/
CursorToBulkCursorAdaptor.java 35 implements IBinder.DeathRecipient {
58 public ContentObserverProxy(IContentObserver remoteObserver, DeathRecipient recipient) {
68 public boolean unlinkToDeath(DeathRecipient recipient) {
  /platform_testing/utils/crashcollector/src/android/test/crashcollector/
Collector.java 24 import android.os.IBinder.DeathRecipient;
69 final IBinder.DeathRecipient death = new DeathRecipient() {
  /system/chre/host/hal_generic/
generic_context_hub.h 115 class DeathRecipient : public hidl_death_recipient {
117 DeathRecipient(const sp<GenericContextHub> contexthub);
127 sp<DeathRecipient> mDeathRecipient;
  /system/libhwbinder/
Binder.cpp 104 const sp<DeathRecipient>& /*recipient*/, void* /*cookie*/,
111 const wp<DeathRecipient>& /*recipient*/, void* /*cookie*/,
112 uint32_t /*flags*/, wp<DeathRecipient>* /*outRecipient*/)
BpHwBinder.cpp 117 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags)
151 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags,
152 wp<DeathRecipient>* outRecipient)
220 sp<DeathRecipient> recipient = obit.recipient.promote();
269 // XXX Should we tell any remaining DeathRecipient
  /system/security/keystore/
operation.h 44 explicit OperationMap(IBinder::DeathRecipient* deathRecipient);
85 android::IBinder::DeathRecipient* mDeathRecipient;
  /frameworks/av/include/soundtrigger/
SoundTrigger.h 33 public IBinder::DeathRecipient
61 //IBinder::DeathRecipient
  /frameworks/av/media/libmedia/include/media/
mediametadataretriever.h 89 class DeathNotifier: public IBinder::DeathRecipient
  /frameworks/av/media/utils/include/mediautils/
BatteryNotifier.h 56 class DeathNotifier : public IBinder::DeathRecipient {
  /frameworks/av/services/oboeservice/
AAudioClientTracker.h 74 class NotificationClient : public IBinder::DeathRecipient {
87 // IBinder::DeathRecipient
  /frameworks/base/libs/common_time/
common_clock_service.h 28 public android::IBinder::DeathRecipient {
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiLockManagerTest.java 71 ArgumentCaptor<IBinder.DeathRecipient> deathRecipient =
72 ArgumentCaptor.forClass(IBinder.DeathRecipient.class);
78 inOrder.verify(binder).linkToDeath(deathRecipient.capture(), eq(0));
83 ArgumentCaptor<IBinder.DeathRecipient> deathRecipient =
84 ArgumentCaptor.forClass(IBinder.DeathRecipient.class);
88 inOrder.verify(binder).unlinkToDeath(deathRecipient.capture(), eq(0));
  /packages/services/Car/vehicle_monitor_service/
VehicleMonitorService.h 71 public IBinder::DeathRecipient {
  /external/ims/rcs/rcsmanager/src/java/com/android/ims/
RcsManager.java 34 import android.os.IBinder.DeathRecipient;
371 private class RcsServiceDeathRecipient implements IBinder.DeathRecipient {
  /frameworks/av/media/libstagefright/include/media/stagefright/
MediaSync.h 144 public IBinder::DeathRecipient {
162 // From IBinder::DeathRecipient
172 public IBinder::DeathRecipient {
180 // From IBinder::DeathRecipient
  /frameworks/base/core/java/android/os/
CommonClock.java 305 private IBinder.DeathRecipient mDeathHandler = new IBinder.DeathRecipient() {
CommonTimeConfig.java 421 private IBinder.DeathRecipient mDeathHandler = new IBinder.DeathRecipient() {
  /frameworks/base/services/core/java/com/android/server/media/projection/
MediaProjectionManagerService.java 62 private final Map<IBinder, IBinder.DeathRecipient> mDeathEaters;
78 mDeathEaters = new ArrayMap<IBinder, IBinder.DeathRecipient>();
128 IBinder.DeathRecipient deathRecipient = new IBinder.DeathRecipient() {
136 linkDeathRecipientLocked(callback, deathRecipient);
148 IBinder.DeathRecipient deathRecipient) {
151 token.linkToDeath(deathRecipient, 0);
152 mDeathEaters.put(token, deathRecipient);
    [all...]
  /frameworks/av/camera/include/camera/
CameraBase.h 100 class CameraBase : public IBinder::DeathRecipient

Completed in 804 milliseconds

12 3 4 5 6 7 8 91011>>