Searched defs:recipient (Results 1 - 11 of 11) sorted by relevance

/frameworks/av/media/libmedia/
H A DIMediaDeathNotifier.cpp62 IMediaDeathNotifier::addObitRecipient(const wp<IMediaDeathNotifier>& recipient) argument
66 sObitRecipients.add(recipient);
70 IMediaDeathNotifier::removeObitRecipient(const wp<IMediaDeathNotifier>& recipient) argument
74 sObitRecipients.remove(recipient);
/frameworks/native/include/binder/
H A DBpBinder.h44 virtual status_t linkToDeath(const sp<DeathRecipient>& recipient,
47 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
103 wp<DeathRecipient> recipient; member in struct:android::BpBinder::Obituary
/frameworks/base/core/java/android/database/
H A DCursorToBulkCursorAdaptor.java58 public ContentObserverProxy(IContentObserver remoteObserver, DeathRecipient recipient) { argument
62 remoteObserver.asBinder().linkToDeath(recipient, 0);
68 public boolean unlinkToDeath(DeathRecipient recipient) { argument
69 return mRemote.asBinder().unlinkToDeath(recipient, 0);
/frameworks/base/core/java/android/os/
H A DIBinder.java106 * IBinder protocol transaction code: interrogate the recipient side
230 * Register the recipient for a notification if this binder
245 public void linkToDeath(DeathRecipient recipient, int flags) argument
250 * The recipient will no longer be called if this object
253 * @return {@code true} if the <var>recipient</var> is successfully
260 * <var>recipient</var> has not been registered with the IBinder, and
261 * the IBinder is still alive. Note that if the <var>recipient</var>
266 public boolean unlinkToDeath(DeathRecipient recipient, int flags); argument
H A DBinder.java390 public void linkToDeath(DeathRecipient recipient, int flags) { argument
396 public boolean unlinkToDeath(DeathRecipient recipient, int flags) { argument
502 public native void linkToDeath(DeathRecipient recipient, int flags) argument
504 public native boolean unlinkToDeath(DeathRecipient recipient, int flags); argument
548 private static final void sendDeathNotice(DeathRecipient recipient) { argument
549 if (false) Log.v("JavaBinder", "sendDeathNotice to " + recipient);
551 recipient.binderDied();
/frameworks/native/libs/binder/
H A DBpBinder.cpp174 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags)
177 ob.recipient = recipient;
181 LOG_ALWAYS_FATAL_IF(recipient == NULL,
182 "linkToDeath(): recipient must be non-NULL");
208 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags,
220 if ((obit.recipient == recipient
221 || (recipient == NULL && obit.cookie == cookie))
225 *outRecipient = mObituaries->itemAt(i).recipient;
173 linkToDeath( const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags) argument
207 unlinkToDeath( const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags, wp<DeathRecipient>* outRecipient) argument
278 sp<DeathRecipient> recipient = obit.recipient.promote(); local
[all...]
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp469 const sp<IBinder::DeathRecipient>& recipient,
472 return sm->asBinder()->linkToDeath(recipient, cookie, flags);
468 linkToComposerDeath( const sp<IBinder::DeathRecipient>& recipient, void* cookie, uint32_t flags) argument
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasClient.java533 String recipient = null; field in class:BluetoothMasClient.MessagesFilter
557 recipient = null;
559 recipient = filter;
/frameworks/base/core/java/android/app/
H A DInstrumentation.java320 * @param recipient Called the next time the thread's message queue is
323 public void waitForIdle(Runnable recipient) { argument
324 mMessageQueue.addIdleHandler(new Idler(recipient));
868 * be processed. Finished at some point after the recipient has returned
927 * Dispatch a pointer event. Finished at some point after the recipient has
947 * Dispatch a trackball event. Finished at some point after the recipient has
/frameworks/base/core/jni/
H A Dandroid_util_Binder.cpp356 // Per-IBinder death recipient bookkeeping. This is how we reconcile local jobject
357 // death recipient references passed in through JNI with the permanent corresponding
370 void add(const sp<JavaDeathRecipient>& recipient);
371 void remove(const sp<JavaDeathRecipient>& recipient);
372 sp<JavaDeathRecipient> find(jobject recipient);
443 // recipient on the VM side, but the list is being torn down.
452 "Releasing leaked death recipient: %s", nameUtf.c_str());
463 //ALOGI("Removing death ref: recipient=%p\n", mObject);
501 void DeathRecipientList::add(const sp<JavaDeathRecipient>& recipient) { argument
504 LOGDEATH("DRL @ %p : add JDR %p", this, recipient
508 remove(const sp<JavaDeathRecipient>& recipient) argument
521 find(jobject recipient) argument
1134 android_os_BinderProxy_linkToDeath(JNIEnv* env, jobject obj, jobject recipient, jint flags) argument
1165 android_os_BinderProxy_unlinkToDeath(JNIEnv* env, jobject obj, jobject recipient, jint flags) argument
[all...]
/frameworks/opt/telephony/src/java/android/provider/
H A DTelephony.java1689 * A string encoding of the recipient IDs of the recipients of
1785 * This is a single-recipient version of {@code getOrCreateThreadId}.
1788 * @param recipient the recipient to send to.
1791 public static long getOrCreateThreadId(Context context, String recipient) { argument
1794 recipients.add(recipient);
1813 for (String recipient : recipients) {
1814 if (Mms.isEmailAddress(recipient)) {
1815 recipient = Mms.extractAddrSpec(recipient);
[all...]

Completed in 6181 milliseconds