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

1 2

  /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/core/java/android/os/
IBinder.java 107 * IBinder protocol transaction code: interrogate the recipient side
187 * Register the recipient for a notification if this binder
202 public void linkToDeath(DeathRecipient recipient, int flags)
207 * The recipient will no longer be called if this object
210 * @return Returns true if the <var>recipient</var> is successfully
217 * <var>recipient</var> has not been registered with the IBinder, and
218 * the IBinder is still alive. Note that if the <var>recipient</var>
223 public boolean unlinkToDeath(DeathRecipient recipient, int flags);
Binder.java 289 public void linkToDeath(DeathRecipient recipient, int flags) {
295 public boolean unlinkToDeath(DeathRecipient recipient, int flags) {
345 public native void linkToDeath(DeathRecipient recipient, int flags)
347 public native boolean unlinkToDeath(DeathRecipient recipient, int flags);
378 private static final void sendDeathNotice(DeathRecipient recipient) {
379 if (Config.LOGV) Log.v("JavaBinder", "sendDeathNotice to " + recipient);
381 recipient.binderDied();
  /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/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/Mms/tests/src/com/android/mms/ui/
LongThreadTest.java 107 String recipient = sb.toString().trim(); local
108 if (recipient.length() > 0) {
109 mRecipients.add(recipient);
291 public void setRecipient(String recipient) {
292 mRecipient = recipient;
339 for (String recipient : mRecipients) {
350 mSendMmsMessage.setRecipient(recipient);
353 mSendSmsMessage.setRecipient(recipient);
MultiPartSmsTests.java 108 public void setRecipient(String recipient) {
109 mRecipient = recipient;
  /frameworks/base/core/java/android/database/
CursorToBulkCursorAdaptor.java 48 public ContentObserverProxy(IContentObserver remoteObserver, DeathRecipient recipient) {
52 remoteObserver.asBinder().linkToDeath(recipient, 0);
58 public boolean unlinkToDeath(DeathRecipient recipient) {
59 return mRemote.asBinder().unlinkToDeath(recipient, 0);
  /external/webkit/WebCore/dom/
EventTarget.h 174 #define DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(recipient, attribute) \
175 EventListener* on##attribute() { return recipient ? recipient->getAttributeEventListener(eventNames().attribute##Event) : 0; } \
176 void setOn##attribute(PassRefPtr<EventListener> listener) { if (recipient) recipient->setAttributeEventListener(eventNames().attribute##Event, listener); } \
  /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(
  /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/java/android/provider/
Telephony.java     [all...]
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduComposer.java 793 boolean recipient = false;
797 recipient = true;
802 recipient = true;
807 recipient = true;
811 if (false == recipient) {
    [all...]
  /frameworks/base/include/surfaceflinger/
SurfaceComposerClient.h 138 status_t linkToComposerDeath(const sp<IBinder::DeathRecipient>& recipient,
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java 69 // new conversation where the recipient set is changing as the user
132 * Find the conversation matching the provided recipient set.
133 * When called with an empty recipient list, equivalent to {@link #createNew}.
189 String recipient = uri.getSchemeSpecificPart(); local
190 return get(context, ContactList.getByNumbers(recipient,
195 * Returns true if the recipient in the uri matches the recipient list in this
209 String recipient = uri.getSchemeSpecificPart(); local
210 ContactList incomingRecipient = ContactList.getByNumbers(recipient,
219 * The recipient list of this conversation can be empty if the result
    [all...]

Completed in 2375 milliseconds

1 2