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

1 2 3

  /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 320 public void linkToDeath(DeathRecipient recipient, int flags) {
326 public boolean unlinkToDeath(DeathRecipient recipient, int flags) {
383 public native void linkToDeath(DeathRecipient recipient, int flags)
385 public native boolean unlinkToDeath(DeathRecipient recipient, int flags);
430 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
CommonClock.java 314 private IBinder.DeathRecipient mDeathHandler = new 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
AudioSystem.h 247 class AudioFlingerClient: public IBinder::DeathRecipient, public BnAudioFlingerClient
253 // DeathRecipient
263 class AudioPolicyServiceClient: public IBinder::DeathRecipient
269 // 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/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/av/include/camera/
Camera.h 67 class Camera : public BnCameraClient, public IBinder::DeathRecipient
168 class DeathNotifier: public IBinder::DeathRecipient
  /frameworks/base/cmds/system_server/library/
system_init.cpp 35 class GrimReaper : public 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) {
  /frameworks/base/services/java/com/android/server/am/
ContentProviderRecord.java 25 import android.os.IBinder.DeathRecipient;
223 private class ExternalProcessHandle implements DeathRecipient {
  /frameworks/base/services/java/com/android/server/dreams/
DreamController.java 27 import android.os.IBinder.DeathRecipient;
196 private final class DreamRecord implements DeathRecipient, ServiceConnection {

Completed in 585 milliseconds

1 2 3