HomeSort by relevance Sort by last modified time
    Searched refs:DeathRecipient (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /frameworks/base/core/java/android/os/
IBinder.java 80 * a {@link DeathRecipient} with the IBinder, which will be called when its
226 public interface DeathRecipient {
234 * then the given {@link DeathRecipient}'s
235 * {@link DeathRecipient#binderDied DeathRecipient.binderDied()} method
246 public void linkToDeath(DeathRecipient recipient, int flags)
256 * {@link DeathRecipient#binderDied DeathRecipient.binderDied()} method
267 public boolean unlinkToDeath(DeathRecipient recipient, int flags);
Binder.java 371 public void linkToDeath(DeathRecipient recipient, int flags) {
377 public boolean unlinkToDeath(DeathRecipient recipient, int flags) {
444 public native void linkToDeath(DeathRecipient recipient, int flags)
446 public native boolean unlinkToDeath(DeathRecipient recipient, int flags);
490 private static final void sendDeathNotice(DeathRecipient recipient) {
CommonTimeConfig.java 422 private IBinder.DeathRecipient mDeathHandler = new IBinder.DeathRecipient() {
RemoteCallbackList.java 30 * <li> Attaches a {@link IBinder.DeathRecipient IBinder.DeathRecipient} to
56 private final class Callback implements IBinder.DeathRecipient {
TokenWatcher.java 180 private class Death implements IBinder.DeathRecipient
  /frameworks/native/include/binder/
IBinder.h 92 class DeathRecipient : public virtual RefBase
102 * then DeathRecipient::binderDied() will be called with a reference
120 virtual status_t linkToDeath(const sp<DeathRecipient>& recipient,
131 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
134 wp<DeathRecipient>* outRecipient = NULL) = 0;
BpBinder.h 44 virtual status_t linkToDeath(const sp<DeathRecipient>& recipient,
47 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
50 wp<DeathRecipient>* outRecipient = NULL);
103 wp<DeathRecipient> recipient;
Binder.h 40 virtual status_t linkToDeath(const sp<DeathRecipient>& recipient,
44 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
47 wp<DeathRecipient>* outRecipient = NULL);
  /frameworks/native/include/private/gui/
ComposerService.h 45 sp<IBinder::DeathRecipient> mDeathObserver;
  /frameworks/av/include/media/
IMediaDeathNotifier.h 42 class DeathNotifier: public IBinder::DeathRecipient
mediametadataretriever.h 82 class DeathNotifier: public IBinder::DeathRecipient
  /system/core/healthd/
BatteryPropertiesRegistrar.h 34 public IBinder::DeathRecipient {
  /frameworks/native/include/gui/
SensorManager.h 59 // DeathRecipient interface
69 mutable sp<IBinder::DeathRecipient> mDeathObserver;
  /frameworks/base/core/java/android/database/
CursorToBulkCursorAdaptor.java 38 implements IBinder.DeathRecipient {
61 public ContentObserverProxy(IContentObserver remoteObserver, DeathRecipient recipient) {
71 public boolean unlinkToDeath(DeathRecipient recipient) {
  /frameworks/native/libs/binder/
Binder.cpp 120 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags)
126 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags,
127 wp<DeathRecipient>* outRecipient)
BpBinder.cpp 174 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags)
208 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags,
209 wp<DeathRecipient>* outRecipient)
278 sp<DeathRecipient> recipient = obit.recipient.promote();
327 // XXX Should we tell any remaining DeathRecipient
  /frameworks/av/include/camera/
CameraBase.h 54 class CameraBase : public IBinder::DeathRecipient
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 39 class BootAnimation : public Thread, public IBinder::DeathRecipient
  /frameworks/base/services/common_time/
common_clock_service.h 28 public android::IBinder::DeathRecipient {
  /frameworks/base/services/java/com/android/server/display/
VirtualDisplayAdapter.java 23 import android.os.IBinder.DeathRecipient;
95 implements DeathRecipient {
  /frameworks/av/media/libstagefright/include/
TimedEventQueue.h 61 class PMDeathRecipient : public IBinder::DeathRecipient {
66 // IBinder::DeathRecipient
  /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);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowRemoteCallbackList.java 20 private final class Callback implements IBinder.DeathRecipient {
  /frameworks/native/libs/gui/
SensorManager.cpp 78 class DeathObserver : public IBinder::DeathRecipient {
  /cts/tests/tests/os/src/android/os/cts/
MessengerTest.java 65 public void linkToDeath(DeathRecipient recipient, int flags) throws RemoteException {
81 public boolean unlinkToDeath(DeathRecipient recipient, int flags) {

Completed in 364 milliseconds

1 2 3 4 5