/frameworks/native/libs/binder/ |
D | BpBinder.cpp | 174 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags) in linkToDeath() argument 177 ob.recipient = recipient; in linkToDeath() 181 LOG_ALWAYS_FATAL_IF(recipient == NULL, in linkToDeath() 208 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags, in unlinkToDeath() argument 220 if ((obit.recipient == recipient in unlinkToDeath() 221 || (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 …]
|
D | Binder.cpp | 120 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags) in linkToDeath() argument 126 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags, in unlinkToDeath() argument
|
/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/java/android/os/ |
D | Binder.java | 336 public void linkToDeath(DeathRecipient recipient, int flags) { in linkToDeath() argument 342 public boolean unlinkToDeath(DeathRecipient recipient, int flags) { in unlinkToDeath() argument 399 public native void linkToDeath(DeathRecipient recipient, int flags) in linkToDeath() argument 401 public native boolean unlinkToDeath(DeathRecipient recipient, int flags); in unlinkToDeath() argument 446 private static final void sendDeathNotice(DeathRecipient recipient) { in sendDeathNotice() argument 447 if (false) Log.v("JavaBinder", "sendDeathNotice to " + recipient); in sendDeathNotice() 449 recipient.binderDied(); in sendDeathNotice()
|
D | IBinder.java | 246 public void linkToDeath(DeathRecipient recipient, int flags) in linkToDeath() argument 267 public boolean unlinkToDeath(DeathRecipient recipient, int flags); in unlinkToDeath() argument
|
/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/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/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/base/core/jni/ |
D | android_util_Binder.cpp | 379 void add(const sp<JavaDeathRecipient>& recipient); 380 void remove(const sp<JavaDeathRecipient>& recipient); 381 sp<JavaDeathRecipient> find(jobject recipient); 510 void DeathRecipientList::add(const sp<JavaDeathRecipient>& recipient) { in add() argument 513 LOGDEATH("DRL @ %p : add JDR %p", this, recipient.get()); in add() 514 mList.push_back(recipient); in add() 517 void DeathRecipientList::remove(const sp<JavaDeathRecipient>& recipient) { in remove() argument 522 if (*iter == recipient) { in remove() 523 LOGDEATH("DRL @ %p : remove JDR %p", this, recipient.get()); in remove() 530 sp<JavaDeathRecipient> DeathRecipientList::find(jobject recipient) { in find() argument [all …]
|
/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 | IBinder.h | 120 virtual status_t linkToDeath(const sp<DeathRecipient>& recipient, 131 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
|
D | Binder.h | 40 virtual status_t linkToDeath(const sp<DeathRecipient>& recipient, 44 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
|
/frameworks/base/core/java/android/database/ |
D | CursorToBulkCursorAdaptor.java | 61 public ContentObserverProxy(IContentObserver remoteObserver, DeathRecipient recipient) { in ContentObserverProxy() argument 65 remoteObserver.asBinder().linkToDeath(recipient, 0); in ContentObserverProxy() 71 public boolean unlinkToDeath(DeathRecipient recipient) { in unlinkToDeath() argument 72 return mRemote.asBinder().unlinkToDeath(recipient, 0); in unlinkToDeath()
|
/frameworks/av/include/media/ |
D | IMediaDeathNotifier.h | 39 static void addObitRecipient(const wp<IMediaDeathNotifier>& recipient); 40 static void removeObitRecipient(const wp<IMediaDeathNotifier>& recipient);
|
/frameworks/base/services/java/com/android/server/ |
D | TextServicesManagerService.java | 299 final InternalDeathRecipient recipient = in getSpellCheckerService() local 302 if (recipient == null) { in getSpellCheckerService() 319 recipient.mScLocale, recipient.mScListener, bundle); in getSpellCheckerService() 631 InternalDeathRecipient recipient = null; in addListener() local 641 recipient = new InternalDeathRecipient( in addListener() 643 scListener.asBinder().linkToDeath(recipient, 0); in addListener() 644 mListeners.add(recipient); in addListener() 650 return recipient; in addListener()
|
/frameworks/base/core/java/android/provider/ |
D | Telephony.java | 1260 public static long getOrCreateThreadId(Context context, String recipient) { in getOrCreateThreadId() argument 1263 recipients.add(recipient); in getOrCreateThreadId() 1281 for (String recipient : recipients) { in getOrCreateThreadId() 1282 if (Mms.isEmailAddress(recipient)) { in getOrCreateThreadId() 1283 recipient = Mms.extractAddrSpec(recipient); in getOrCreateThreadId() 1286 uriBuilder.appendQueryParameter("recipient", recipient); in getOrCreateThreadId()
|
/frameworks/base/core/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/native/include/gui/ |
D | SurfaceComposerClient.h | 115 status_t linkToComposerDeath(const sp<IBinder::DeathRecipient>& recipient,
|
/frameworks/native/libs/gui/ |
D | SurfaceComposerClient.cpp | 337 const sp<IBinder::DeathRecipient>& recipient, in linkToComposerDeath() argument 340 return sm->asBinder()->linkToDeath(recipient, cookie, flags); in linkToComposerDeath()
|
/frameworks/base/docs/html/guide/faq/ |
D | framework.jd | 94 Long based on a counter or time stamp) to the recipient activity via 95 intent extras. The recipient activity retrieves the object using this
|
D | commontasks.jd | 358 with the recipient's class name. The recipient receives a {@link android.content.Context 368 <pre>// We are sending this to a specific recipient, so we will 369 // only specify the recipient class name.
|
/frameworks/base/core/java/android/app/ |
D | Instrumentation.java | 310 public void waitForIdle(Runnable recipient) { in waitForIdle() argument 311 mMessageQueue.addIdleHandler(new Idler(recipient)); in waitForIdle()
|
/frameworks/base/docs/html/guide/google/gcm/ |
D | gcm.jd | 701 …<p>Here is the smallest possible request (a message without any parameters and just one recipient)… 724 <p>And here is the same message using plain-text format (but just 1 recipient): </p> 803 …recipient. The possible values are the same as documented in the above table, plus "Unavailab… 882 <p> Here is a simple case of a JSON message successfully sent to one recipient without canonical ID…
|
/frameworks/base/docs/html/about/versions/ |
D | android-2.2-highlights.jd | 103 application, enabling users to auto-complete recipient names from the directory.</p>
|
/frameworks/base/docs/html/guide/practices/ui_guidelines/ |
D | menu_design.jd | 420 <li>In an Email application, when adding a recipient to the "To" field 421 through the contact book, selecting a contact executes "Add to recipient
|