/frameworks/native/libs/binder/ |
D | BpBinder.cpp | 175 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags) in linkToDeath() argument 178 ob.recipient = recipient; in linkToDeath() 182 LOG_ALWAYS_FATAL_IF(recipient == NULL, in linkToDeath() 209 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags, in unlinkToDeath() argument 221 if ((obit.recipient == recipient in unlinkToDeath() 222 || (recipient == NULL && obit.cookie == cookie)) in unlinkToDeath() 225 *outRecipient = mObituaries->itemAt(i).recipient; in unlinkToDeath() 278 sp<DeathRecipient> recipient = obit.recipient.promote(); in reportOneDeath() local 279 ALOGV("Reporting death to recipient: %p\n", recipient.get()); in reportOneDeath() 280 if (recipient == NULL) return; in reportOneDeath() [all …]
|
/frameworks/av/media/libmedia/ |
D | IMediaDeathNotifier.cpp | 62 IMediaDeathNotifier::addObitRecipient(const wp<IMediaDeathNotifier>& recipient) in addObitRecipient() argument 66 sObitRecipients.add(recipient); in addObitRecipient() 70 IMediaDeathNotifier::removeObitRecipient(const wp<IMediaDeathNotifier>& recipient) in removeObitRecipient() argument 74 sObitRecipients.remove(recipient); in removeObitRecipient()
|
/frameworks/base/core/jni/ |
D | android_util_Binder.cpp | 358 void add(const sp<JavaDeathRecipient>& recipient); 359 void remove(const sp<JavaDeathRecipient>& recipient); 360 sp<JavaDeathRecipient> find(jobject recipient); 498 void DeathRecipientList::add(const sp<JavaDeathRecipient>& recipient) { in add() argument 501 LOGDEATH("DRL @ %p : add JDR %p", this, recipient.get()); in add() 502 mList.push_back(recipient); in add() 505 void DeathRecipientList::remove(const sp<JavaDeathRecipient>& recipient) { in remove() argument 510 if (*iter == recipient) { in remove() 511 LOGDEATH("DRL @ %p : remove JDR %p", this, recipient.get()); in remove() 518 sp<JavaDeathRecipient> DeathRecipientList::find(jobject recipient) { in find() argument [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/ |
D | ARM_DELIVERY.TXT | 24 Beta release status has a particular meaning to ARM of which the recipient 30 and documentation may still be encountered. The recipient should consider 33 recipient, but the provision or timeliness of this support cannot be 36 By accepting a Beta release, the recipient agrees to these constraints and 38 defects identified by the recipient. The specific Beta version supplied 41 will only be provided by ARM to a recipient who has a current support and
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/ |
D | ARM_DELIVERY.TXT | 24 Beta release status has a particular meaning to ARM of which the recipient 30 and documentation may still be encountered. The recipient should consider 33 recipient, but the provision or timeliness of this support cannot be 36 By accepting a Beta release, the recipient agrees to these constraints and 38 defects identified by the recipient. The specific Beta version supplied 41 will only be provided by ARM to a recipient who has a current support and
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/ |
D | ARM_DELIVERY.TXT | 24 Beta release status has a particular meaning to ARM of which the recipient 30 and documentation may still be encountered. The recipient should consider 33 recipient, but the provision or timeliness of this support cannot be 36 By accepting a Beta release, the recipient agrees to these constraints and 38 defects identified by the recipient. The specific Beta version supplied 41 will only be provided by ARM to a recipient who has a current support and
|
/frameworks/base/core/java/android/database/ |
D | CursorToBulkCursorAdaptor.java | 58 public ContentObserverProxy(IContentObserver remoteObserver, DeathRecipient recipient) { in ContentObserverProxy() argument 62 remoteObserver.asBinder().linkToDeath(recipient, 0); in ContentObserverProxy() 68 public boolean unlinkToDeath(DeathRecipient recipient) { in unlinkToDeath() argument 69 return mRemote.asBinder().unlinkToDeath(recipient, 0); in unlinkToDeath()
|
/frameworks/native/include/binder/ |
D | BpBinder.h | 44 virtual status_t linkToDeath(const sp<DeathRecipient>& recipient, 47 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient, 103 wp<DeathRecipient> recipient; member
|
D | Binder.h | 42 virtual status_t linkToDeath(const sp<DeathRecipient>& recipient, 46 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
|
D | IBinder.h | 121 virtual status_t linkToDeath(const sp<DeathRecipient>& recipient, 132 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
|
/frameworks/base/core/java/android/os/ |
D | Binder.java | 509 public void linkToDeath(DeathRecipient recipient, int flags) { in linkToDeath() argument 515 public boolean unlinkToDeath(DeathRecipient recipient, int flags) { in unlinkToDeath() argument 621 public native void linkToDeath(DeathRecipient recipient, int flags) in linkToDeath() argument 623 public native boolean unlinkToDeath(DeathRecipient recipient, int flags); in unlinkToDeath() argument 685 private static final void sendDeathNotice(DeathRecipient recipient) { in sendDeathNotice() argument 686 if (false) Log.v("JavaBinder", "sendDeathNotice to " + recipient); in sendDeathNotice() 688 recipient.binderDied(); in sendDeathNotice()
|
D | IBinder.java | 272 public void linkToDeath(DeathRecipient recipient, int flags) in linkToDeath() argument 293 public boolean unlinkToDeath(DeathRecipient recipient, int flags); in unlinkToDeath() argument
|
/frameworks/av/include/media/ |
D | IMediaDeathNotifier.h | 39 static void addObitRecipient(const wp<IMediaDeathNotifier>& recipient); 40 static void removeObitRecipient(const wp<IMediaDeathNotifier>& recipient);
|
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/ |
D | BluetoothMasRequestGetMessagesListing.java | 83 if (filter.recipient != null) { in BluetoothMasRequestGetMessagesListing() 84 oap.add(OAP_TAGID_FILTER_RECIPIENT, filter.recipient); in BluetoothMasRequestGetMessagesListing()
|
D | BluetoothMasClient.java | 532 String recipient = null; field in BluetoothMasClient.MessagesFilter 559 recipient = null; in setRecipient() 561 recipient = filter; in setRecipient()
|
/frameworks/opt/telephony/src/java/android/provider/ |
D | Telephony.java | 1873 public static long getOrCreateThreadId(Context context, String recipient) { in getOrCreateThreadId() argument 1876 recipients.add(recipient); in getOrCreateThreadId() 1894 for (String recipient : recipients) { in getOrCreateThreadId() 1895 if (Mms.isEmailAddress(recipient)) { in getOrCreateThreadId() 1896 recipient = Mms.extractAddrSpec(recipient); in getOrCreateThreadId() 1899 uriBuilder.appendQueryParameter("recipient", recipient); in getOrCreateThreadId()
|
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/ |
D | PduComposer.java | 793 boolean recipient = false; in makeSendReqPdu() 797 recipient = true; in makeSendReqPdu() 802 recipient = true; in makeSendReqPdu() 807 recipient = true; in makeSendReqPdu() 811 if (false == recipient) { in makeSendReqPdu()
|
/frameworks/base/services/core/java/com/android/server/ |
D | TextServicesManagerService.java | 556 final InternalDeathRecipient recipient = in getSpellCheckerService() local 559 if (recipient == null) { in getSpellCheckerService() 576 recipient.mScLocale, recipient.mScListener, bundle); in getSpellCheckerService() 889 InternalDeathRecipient recipient = null; in addListener() local 899 recipient = new InternalDeathRecipient( in addListener() 901 scListener.asBinder().linkToDeath(recipient, 0); in addListener() 902 mListeners.add(recipient); in addListener() 908 return recipient; in addListener()
|
/frameworks/base/core/java/android/hardware/camera2/impl/ |
D | ICameraDeviceUserWrapper.java | 57 public void unlinkToDeath(IBinder.DeathRecipient recipient, int flags) { in unlinkToDeath() argument 59 mRemoteDevice.asBinder().unlinkToDeath(recipient, flags); in unlinkToDeath()
|
/frameworks/opt/chips/src/com/android/ex/chips/ |
D | DropdownChipLayouter.java | 280 protected void bindDrawableToDeleteView(final StateListDrawable drawable, String recipient, in bindDrawableToDeleteView() argument 291 res.getString(R.string.dropdown_delete_button_desc, recipient)); in bindDrawableToDeleteView()
|
/frameworks/native/include/gui/ |
D | SurfaceComposerClient.h | 67 status_t linkToComposerDeath(const sp<IBinder::DeathRecipient>& recipient,
|
/frameworks/native/libs/gui/ |
D | SurfaceComposerClient.cpp | 556 const sp<IBinder::DeathRecipient>& recipient, in linkToComposerDeath() argument 559 return IInterface::asBinder(sm)->linkToDeath(recipient, cookie, flags); in linkToComposerDeath()
|
/frameworks/base/core/java/android/app/ |
D | Instrumentation.java | 335 public void waitForIdle(Runnable recipient) { in waitForIdle() argument 336 mMessageQueue.addIdleHandler(new Idler(recipient)); in waitForIdle()
|
/frameworks/base/docs/html/guide/platform/ |
D | index.jd | 216 installed to deliver a message to the recipient you specify.
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
D | BridgeContext.java | 1129 public void linkToDeath(DeathRecipient recipient, int flags) in getBinder() 1135 public boolean unlinkToDeath(DeathRecipient recipient, int flags) { in getBinder()
|