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

1 2 34 5 6 7 8 91011>>

  /cts/tests/tests/os/src/android/os/cts/
MessengerTest.java 67 public void linkToDeath(DeathRecipient recipient, int flags) throws RemoteException {
83 public boolean unlinkToDeath(DeathRecipient recipient, int flags) {
  /frameworks/base/services/core/java/com/android/server/am/
ContentProviderRecord.java 25 import android.os.IBinder.DeathRecipient;
234 private class ExternalProcessHandle implements DeathRecipient {
ReceiverList.java 33 implements IBinder.DeathRecipient {
  /frameworks/base/services/core/java/com/android/server/pm/
EphemeralResolverConnection.java 31 import android.os.IBinder.DeathRecipient;
55 final class EphemeralResolverConnection implements DeathRecipient {
  /frameworks/base/telecomm/java/android/telecom/
VideoCallImpl.java 51 private IBinder.DeathRecipient mDeathRecipient = new IBinder.DeathRecipient() {
  /frameworks/base/telephony/java/android/telephony/
MbmsStreamingSession.java 69 private IBinder.DeathRecipient mDeathRecipient = new IBinder.DeathRecipient() {
  /frameworks/opt/net/lowpan/service/java/com/android/server/lowpan/
LowpanServiceImpl.java 156 new IBinder.DeathRecipient() {
259 new IBinder.DeathRecipient() {
  /frameworks/base/core/java/android/os/
Binder.java 637 public void linkToDeath(@NonNull DeathRecipient recipient, int flags) {
643 public boolean unlinkToDeath(@NonNull DeathRecipient recipient, int flags) {
775 public native void linkToDeath(DeathRecipient recipient, int flags)
777 public native boolean unlinkToDeath(DeathRecipient recipient, int flags);
841 private static final void sendDeathNotice(DeathRecipient recipient) {
RemoteCallbackList.java 33 * <li> Attaches a {@link IBinder.DeathRecipient IBinder.DeathRecipient} to
62 private final class Callback implements IBinder.DeathRecipient {
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/
ImsServiceControllerTest.java 222 ArgumentCaptor<IBinder.DeathRecipient> deathCaptor =
223 ArgumentCaptor.forClass(IBinder.DeathRecipient.class);
437 private IBinder.DeathRecipient getDeathRecipient() throws RemoteException {
438 ArgumentCaptor<IBinder.DeathRecipient> deathCaptor =
439 ArgumentCaptor.forClass(IBinder.DeathRecipient.class);
  /frameworks/base/core/jni/
android_os_HwRemoteBinder.cpp 66 class HwBinderDeathRecipient : public hardware::IBinder::DeathRecipient
96 // to allow the DeathRecipient and BinderProxy to be GC'd if no longer needed.
162 jweak mObjectWeak; // will be a weak ref to the same VM-side DeathRecipient after binderDied()
174 for (const sp<HwBinderDeathRecipient>& deathRecipient : mList) {
175 deathRecipient->warnIfStillLive();
200 for (const sp<HwBinderDeathRecipient>& deathRecipient : mList) {
201 if (deathRecipient->matches(recipient)) {
202 return deathRecipient;
221 "(Landroid/os/IHwBinder$DeathRecipient;J)V");
394 wp<hardware::IBinder::DeathRecipient> dr
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ContextMap.java 20 import android.os.IBinder.DeathRecipient;
84 private IBinder.DeathRecipient mDeathRecipient;
112 void linkToDeath(IBinder.DeathRecipient deathRecipient) {
117 binder.linkToDeath(deathRecipient, 0);
118 mDeathRecipient = deathRecipient;
120 Log.e(TAG, "Unable to link deathRecipient for app id " + id);
133 Log.e(TAG, "Unable to unlink deathRecipient for app id " + id);
  /frameworks/av/camera/ndk/impl/
ACameraManager.h 66 class DeathNotifier : public IBinder::DeathRecipient {
70 // IBinder::DeathRecipient implementation
  /frameworks/av/drm/libdrmframework/include/
DrmManagerClientImpl.h 416 class DeathNotifier: public IBinder::DeathRecipient {
  /frameworks/av/media/libaudioclient/include/media/
AudioEffect.h 433 public android::BnEffectClient, public android::IBinder::DeathRecipient
464 // IBinder::DeathRecipient
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3StreamSplitter.h 141 public IBinder::DeathRecipient {
150 // From IBinder::DeathRecipient
  /frameworks/base/services/core/java/com/android/server/
CountryDetectorService.java 51 private final class Receiver implements IBinder.DeathRecipient {
  /frameworks/base/services/core/java/com/android/server/fingerprint/
ClientMonitor.java 37 public abstract class ClientMonitor implements IBinder.DeathRecipient {
  /frameworks/base/services/core/java/com/android/server/location/
RemoteListenerHelper.java 232 private class LinkedListener implements IBinder.DeathRecipient {
  /frameworks/base/tests/OneMedia/src/com/android/onemedia/
PlayerService.java 136 cb.asBinder().linkToDeath(new IBinder.DeathRecipient() {
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
LocalOnlyHotspotRequestInfoTest.java 100 * Calls to unlink the DeathRecipient should call to unlink from Binder.
125 .linkToDeath(any(IBinder.DeathRecipient.class), eq(0));