HomeSort by relevance Sort by last modified time
    Searched refs:recipient (Results 1 - 25 of 52) sorted by null

1 2 3

  /packages/apps/Mms/src/com/android/mms/ui/
DeliveryReportItem.java 25 String recipient; field in class:DeliveryReportItem
28 public DeliveryReportItem(String recipient, String status) {
29 this.recipient = recipient;
DeliveryReportActivity.java 202 String recipient = request.getRecipient(); local
203 recipient = (Mms.isEmailAddress(recipient))?
204 Mms.extractAddrSpec(recipient): PhoneNumberUtils.stripSeparators(recipient);
205 MmsReportStatus status = queryStatusByRecipient(reportStatus, recipient);
236 Map<String, MmsReportStatus> status, String recipient) {
241 if (Mms.isEmailAddress(recipient)) {
242 if (TextUtils.equals(r, recipient)) {
246 else if (PhoneNumberUtils.compare(r, recipient)) {
289 String recipient = c.getString(COLUMN_RECIPIENT); local
    [all...]
DeliveryReportListItem.java 31 * This class displays the status for a single recipient of a message. It is used in
47 mRecipientView = (TextView) findViewById(R.id.recipient);
56 public final void bind(String recipient, String status) {
57 // Recipient
58 if (!TextUtils.isEmpty(recipient)) {
59 mRecipientView.setText(Contact.get(recipient, false).getName());
DeliveryReportAdapter.java 36 super(context, R.layout.delivery_report_list_item, R.id.recipient, items);
56 listItem.bind(item.recipient, item.status);
  /frameworks/base/include/media/
IMediaDeathNotifier.h 39 static void addObitRecipient(const wp<IMediaDeathNotifier>& recipient);
40 static void removeObitRecipient(const wp<IMediaDeathNotifier>& recipient);
  /external/dbus/bus/
dispatch.h 34 DBusConnection *recipient,
  /frameworks/base/core/java/android/os/
IBinder.java 107 * IBinder protocol transaction code: interrogate the recipient side
228 * Register the recipient for a notification if this binder
243 public void linkToDeath(DeathRecipient recipient, int flags)
248 * The recipient will no longer be called if this object
251 * @return Returns true if the <var>recipient</var> is successfully
258 * <var>recipient</var> has not been registered with the IBinder, and
259 * the IBinder is still alive. Note that if the <var>recipient</var>
264 public boolean unlinkToDeath(DeathRecipient recipient, int flags);
Binder.java 307 public void linkToDeath(DeathRecipient recipient, int flags) {
313 public boolean unlinkToDeath(DeathRecipient recipient, int flags) {
367 public native void linkToDeath(DeathRecipient recipient, int flags)
369 public native boolean unlinkToDeath(DeathRecipient recipient, int flags);
414 private static final void sendDeathNotice(DeathRecipient recipient) {
415 if (false) Log.v("JavaBinder", "sendDeathNotice to " + recipient);
417 recipient.binderDied();
  /frameworks/base/media/libmedia/
IMediaDeathNotifier.cpp 62 IMediaDeathNotifier::addObitRecipient(const wp<IMediaDeathNotifier>& recipient)
66 sObitRecipients.add(recipient);
70 IMediaDeathNotifier::removeObitRecipient(const wp<IMediaDeathNotifier>& recipient)
74 sObitRecipients.remove(recipient);
  /frameworks/base/libs/binder/
BpBinder.cpp 174 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;
278 sp<DeathRecipient> recipient = obit.recipient.promote(); local
    [all...]
Binder.cpp 119 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags)
125 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags,
  /frameworks/base/include/binder/
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 in struct:android::BpBinder::Obituary
Binder.h 40 virtual status_t linkToDeath(const sp<DeathRecipient>& recipient,
44 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
IBinder.h 98 * Register the @a recipient for a notification if this binder
112 * @note This link always holds a weak reference to its recipient.
119 virtual status_t linkToDeath(const sp<DeathRecipient>& recipient,
125 * The @a recipient will no longer be called if this object
127 * supply a NULL @a recipient, and the recipient previously
130 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
  /external/tcpdump/
print-zephyr.c 53 const char *recipient; member in struct:z_packet
110 z_triple(char *class, char *inst, const char *recipient)
112 if (!*recipient)
113 recipient = "*";
114 snprintf(z_buf, sizeof(z_buf), "<%s,%s,%s>", class, inst, recipient);
171 PARSE_FIELD_STR(z.recipient);
306 if (!*z.recipient)
307 z.recipient = "*";
309 printf(" to %s", z_triple(z.class, z.inst, z.recipient));
  /packages/apps/Contacts/src/com/android/contacts/calllog/
CallLogListItemHelper.java 91 final CharSequence recipient; local
93 recipient = details.name;
95 recipient = mPhoneNumberHelper.getDisplayNumber(
98 return mResources.getString(R.string.description_call, recipient);
  /frameworks/base/core/java/android/database/
CursorToBulkCursorAdaptor.java 60 public ContentObserverProxy(IContentObserver remoteObserver, DeathRecipient recipient) {
64 remoteObserver.asBinder().linkToDeath(recipient, 0);
70 public boolean unlinkToDeath(DeathRecipient recipient) {
71 return mRemote.asBinder().unlinkToDeath(recipient, 0);
  /packages/apps/Mms/tests/src/com/android/mms/ui/
LongThreadTest.java 118 String recipient = sb.toString().trim(); local
119 if (recipient.length() > 0) {
120 mRecipients.add(recipient);
366 public void setRecipient(String recipient) {
367 mRecipient = recipient;
414 for (String recipient : mRecipients) {
425 mSendMmsMessage.setRecipient(recipient);
428 mSendSmsMessage.setRecipient(recipient);
SmsTest.java 129 String recipient = sb.toString().trim(); local
130 if (recipient.length() > 0) {
131 mRecipientsList.add(recipient);
185 public void setRecipient(String recipient) {
186 mRecipient = recipient;
224 * @param recipientNumber the recipient number for this sms
  /external/webkit/Source/WebCore/dom/
EventTarget.h 212 #define DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(recipient, attribute) \
213 EventListener* on##attribute() { return recipient ? recipient->getAttributeEventListener(eventNames().attribute##Event) : 0; } \
214 void setOn##attribute(PassRefPtr<EventListener> listener) { if (recipient) recipient->setAttributeEventListener(eventNames().attribute##Event, listener); } \
  /packages/apps/Mms/apptests/src/com/android/mms/tests/
SmsSendIntentTestActivity.java 100 String recipient = mRecipient.getText().toString(); local
101 if (TextUtils.isEmpty(recipient)) {
102 Toast.makeText(SmsSendIntentTestActivity.this, "Please enter a message recipient.",
120 Uri uri = Uri.fromParts("smsto", recipient, null);
  /development/samples/ApiDemos/src/com/example/android/apis/os/
SmsMessagingDemo.java 99 Toast.makeText(SmsMessagingDemo.this, "Please enter a message recipient.",
117 String recipient = recipientTextEdit.getText().toString();
119 sms.sendTextMessage(recipient, null, message, PendingIntent.getBroadcast(
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
irc.js 36 this.sendMessage = function(recipient, message) {
37 sendCommand(commands.PRIVMSG, [recipient], message);
  /packages/apps/Mms/tests/src/com/android/mms/
RecyclerTest.java 114 String recipient = sb.toString().trim(); local
115 if (recipient.length() > 0) {
116 mRecipients.add(recipient);
  /frameworks/base/core/jni/
android_util_Binder.cpp 372 // Per-IBinder death recipient bookkeeping. This is how we reconcile local jobject
373 // death recipient references passed in through JNI with the permanent corresponding
386 void add(const sp<JavaDeathRecipient>& recipient);
387 void remove(const sp<JavaDeathRecipient>& recipient);
388 sp<JavaDeathRecipient> find(jobject recipient);
459 // recipient on the VM side, but the list is being torn down.
468 "Releasing leaked death recipient: %s", nameUtf.c_str());
479 //LOGI("Removing death ref: recipient=%p\n", mObject);
517 void DeathRecipientList::add(const sp<JavaDeathRecipient>& recipient) {
520 LOGDEATH("DRL @ %p : add JDR %p", this, recipient.get())
    [all...]

Completed in 573 milliseconds

1 2 3