/packages/apps/Mms/src/com/android/mms/ui/ |
DeliveryReportItem.java | 25 String recipient; field in class:DeliveryReportItem 29 public DeliveryReportItem(String recipient, String status, String deliveryDate) { 30 this.recipient = recipient;
|
DeliveryReportActivity.java | 218 String recipient = request.getRecipient(); local 219 recipient = (Mms.isEmailAddress(recipient))? 220 Mms.extractAddrSpec(recipient): PhoneNumberUtils.stripSeparators(recipient); 221 MmsReportStatus status = queryStatusByRecipient(reportStatus, recipient); 252 Map<String, MmsReportStatus> status, String recipient) { 257 if (Mms.isEmailAddress(recipient)) { 258 if (TextUtils.equals(r, recipient)) { 262 else if (PhoneNumberUtils.compare(r, recipient)) { 305 String recipient = c.getString(COLUMN_RECIPIENT); local [all...] |
DeliveryReportListItem.java | 32 * This class displays the status for a single recipient of a message. It is used in 49 mRecipientView = (TextView) findViewById(R.id.recipient); 59 public final void bind(String recipient, String status, String deliveryDate) { 60 // Recipient 61 if (!TextUtils.isEmpty(recipient)) { 62 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, item.deliveryDate);
|
/frameworks/av/include/media/ |
IMediaDeathNotifier.h | 39 static void addObitRecipient(const wp<IMediaDeathNotifier>& recipient); 40 static void removeObitRecipient(const wp<IMediaDeathNotifier>& recipient);
|
/frameworks/base/core/java/android/os/ |
IBinder.java | 107 * IBinder protocol transaction code: interrogate the recipient side 231 * Register the recipient for a notification if this binder 246 public void linkToDeath(DeathRecipient recipient, int flags) 251 * The recipient will no longer be called if this object 254 * @return Returns true if the <var>recipient</var> is successfully 261 * <var>recipient</var> has not been registered with the IBinder, and 262 * the IBinder is still alive. Note that if the <var>recipient</var> 267 public boolean unlinkToDeath(DeathRecipient recipient, int flags);
|
Binder.java | 357 public void linkToDeath(DeathRecipient recipient, int flags) { 363 public boolean unlinkToDeath(DeathRecipient recipient, int flags) { 420 public native void linkToDeath(DeathRecipient recipient, int flags) 422 public native boolean unlinkToDeath(DeathRecipient recipient, int flags); 467 private static final void sendDeathNotice(DeathRecipient recipient) { 468 if (false) Log.v("JavaBinder", "sendDeathNotice to " + recipient); 470 recipient.binderDied();
|
/frameworks/av/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/native/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 | 120 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags) 126 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags,
|
/frameworks/native/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 | 99 * Register the @a recipient for a notification if this binder 113 * @note This link always holds a weak reference to its recipient. 120 virtual status_t linkToDeath(const sp<DeathRecipient>& recipient, 126 * The @a recipient will no longer be called if this object 128 * supply a NULL @a recipient, and the recipient previously 131 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/Dialer/src/com/android/dialer/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 | 61 public ContentObserverProxy(IContentObserver remoteObserver, DeathRecipient recipient) { 65 remoteObserver.asBinder().linkToDeath(recipient, 0); 71 public boolean unlinkToDeath(DeathRecipient recipient) { 72 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
|
/packages/apps/Mms/apptests/src/com/android/mms/tests/ |
SmsSendIntentTestActivity.java | 111 String recipient = mRecipient.getText().toString(); local 112 if (TextUtils.isEmpty(recipient)) { 113 Toast.makeText(SmsSendIntentTestActivity.this, "Please enter a message recipient.", 132 Uri uri = Uri.fromParts("smsto", recipient, null); 141 String recipient = mRecipient.getText().toString(); local 142 if (TextUtils.isEmpty(recipient)) { 143 Toast.makeText(SmsSendIntentTestActivity.this, "Please enter a message recipient.", 161 Uri uri = Uri.fromParts("smsto", recipient, null);
|
/frameworks/base/core/jni/ |
android_util_Binder.cpp | 357 // Per-IBinder death recipient bookkeeping. This is how we reconcile local jobject 358 // death recipient references passed in through JNI with the permanent corresponding 371 void add(const sp<JavaDeathRecipient>& recipient); 372 void remove(const sp<JavaDeathRecipient>& recipient); 373 sp<JavaDeathRecipient> find(jobject recipient); 444 // recipient on the VM side, but the list is being torn down. 453 "Releasing leaked death recipient: %s", nameUtf.c_str()); 464 //ALOGI("Removing death ref: recipient=%p\n", mObject); 502 void DeathRecipientList::add(const sp<JavaDeathRecipient>& recipient) { 505 LOGDEATH("DRL @ %p : add JDR %p", this, recipient.get()) [all...] |
/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); } \
|
/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/opt/telephony/src/java/android/provider/ |
Telephony.java | [all...] |