HomeSort by relevance Sort by last modified time
    Searched defs:linkToDeath (Results 1 - 25 of 138) sorted by null

1 2 3 4 5 6

  /frameworks/base/core/java/android/os/
IHwBinder.java 71 public boolean linkToDeath(DeathRecipient recipient, long cookie);
HwRemoteBinder.java 45 public native boolean linkToDeath(DeathRecipient recipient, long cookie);
IBinder.java 81 * <li> The {@link #linkToDeath linkToDeath()} method can be used to register
269 * @see #linkToDeath
291 public void linkToDeath(@NonNull DeathRecipient recipient, int flags)
RemoteCallbackList.java 124 binder.linkToDeath(cb, 0);
  /frameworks/native/libs/binder/
ActivityManager.cpp 92 status_t ActivityManager::linkToDeath(const sp<IBinder::DeathRecipient>& recipient) {
95 return IInterface::asBinder(service)->linkToDeath(recipient);
  /frameworks/base/services/core/java/com/android/server/am/
AssistDataReceiverProxy.java 45 linkToDeath();
88 private void linkToDeath() {
90 mReceiver.asBinder().linkToDeath(this, 0);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
RecentsSystemUser.java 61 nonSystemUserCallbacks.linkToDeath(new IBinder.DeathRecipient() {
  /frameworks/base/services/core/java/com/android/server/wm/
DragAndDropPermissionsHandler.java 90 mTransientToken.linkToDeath(this, 0);
InputConsumerImpl.java 92 mToken.linkToDeath(this, 0);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
LocalOnlyHotspotRequestInfo.java 61 mBinder.linkToDeath(this, 0);
  /packages/services/Car/service/src/com/android/car/
CarService.java 100 linkToDeath(mVehicle, mVehicleDeathRecipient);
202 linkToDeath(mVehicle, this);
209 private static void linkToDeath(IVehicle vehicle, DeathRecipient recipient) {
211 vehicle.linkToDeath(recipient, 0);
213 throw new IllegalStateException("Failed to linkToDeath Vehicle HAL");
BinderInterfaceContainer.java 73 binder.linkToDeath(bInterface, 0);
104 binder.linkToDeath(bInterface, 0);
CarTestService.java 80 token.linkToDeath(deathRecipient, 0);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowRemoteCallbackList.java 51 binder.linkToDeath(cb, 0);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowRemoteCallbackList.java 49 binder.linkToDeath(cb, 0);
  /frameworks/base/services/core/java/com/android/server/media/
MediaUpdateService.java 67 binder.linkToDeath(new IBinder.DeathRecipient() {
  /frameworks/base/services/core/java/com/android/server/os/
SchedulingPolicyService.java 159 client.linkToDeath(mDeathRecipient, 0);
  /frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
MockWeaverService.java 80 public boolean linkToDeath(DeathRecipient recipient, long cookie) throws RemoteException {
  /frameworks/base/telephony/java/com/android/ims/internal/uce/uceservice/
ImsUceManager.java 157 b.linkToDeath(mDeathReceipient, 0);
  /system/libhidl/transport/token/1.0/utils/include/hidl/
HybridInterface.h 126 virtual status_t linkToDeath(
262 linkToDeath(
266 "linkToDeath(): recipient must be non-nullptr");
270 if (!mBase->linkToDeath(mObituaries.back(), 0)) {
  /system/libhwbinder/
Binder.cpp 103 status_t BHwBinder::linkToDeath(
BpHwBinder.cpp 116 status_t BpHwBinder::linkToDeath(
125 "linkToDeath(): recipient must be non-NULL");
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
HostapdHalTest.java 100 when(mServiceManagerMock.linkToDeath(any(IHwBinder.DeathRecipient.class),
104 when(mIHostapdMock.linkToDeath(any(IHwBinder.DeathRecipient.class),
106 when(mIHostapdMock.linkToDeath(any(IHwBinder.DeathRecipient.class),
516 mInOrder.verify(mServiceManagerMock).linkToDeath(mServiceManagerDeathCaptor.capture(),
524 mInOrder.verify(mIHostapdMock).linkToDeath(mHostapdDeathCaptor.capture(), anyLong());
527 mInOrder.verify(mIHostapdMock, never()).linkToDeath(
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ContextMap.java 111 void linkToDeath(IBinder.DeathRecipient deathRecipient) {
118 binder.linkToDeath(deathRecipient, 0);
  /frameworks/base/services/core/java/com/android/server/media/projection/
MediaProjectionManagerService.java 151 token.linkToDeath(deathRecipient, 0);
413 mToken.linkToDeath(mDeathEater, 0);

Completed in 674 milliseconds

1 2 3 4 5 6