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

1 2

  /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...]
RecipientsEditor.java 109 // Remember the delimiter the user typed to end this recipient. We'll
146 // If the user is in the middle of editing an existing recipient, don't offer the
149 // recipient and the new post-editing recipient. As a precedent, gmail does not show
150 // the auto-complete menu when editing an existing recipient.
251 // Very tricky bug. In the recipient editor, we always leave a trailing
257 // recipient editor was still visible, call mRecipientsEditor.populate(recipients).
258 // This would replace the recipient that had a comma with a recipient
260 // recipient, this would eliminate the span inside the text. The span contains th
492 final Contact recipient; field in class:RecipientsEditor.RecipientContextMenuInfo
    [all...]
  /external/chromium_org/jingle/notifier/listener/
push_notifications_send_update_task.cc 47 const buzz::QName kQnRecipient(kPushNotificationsNamespace, "recipient");
52 // [<recipient to='{bare jid}'>{base-64 encoded data}</data>]*
67 const Recipient& recipient = recipients[i]; local
71 recipient_element->AddAttr(buzz::QN_TO, recipient.to);
72 if (!recipient.user_specific_data.empty()) {
74 if (!base::Base64Encode(recipient.user_specific_data, &base64_data)) {
76 << recipient.user_specific_data;
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogListItemHelper.java 89 final CharSequence recipient; local
91 recipient = details.name;
93 recipient = mPhoneNumberHelper.getDisplayNumber(
96 return mResources.getString(R.string.description_call, recipient);
  /external/chromium_org/sync/notifier/
push_client_channel.cc 131 notifier::Recipient recipient; local
132 recipient.to = kBotJid;
135 notification.recipients.push_back(recipient);
  /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
  /device/google/accessory/arduino/USB_Host_Shield/
Usb.h 79 byte recipient: 5; // Recipient of the request member in struct:__anon1996::__anon1997::__anon1998
  /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));
  /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...]
  /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);
  /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);
  /packages/apps/Mms/tests/src/com/android/mms/ui/
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
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);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapbMessage.java 61 private ArrayList<vCard> recipient = null; field in class:BluetoothMapbMessage
539 if(D) Log.d(TAG,"Decoding recipient vCard level " + level);
540 if(recipient == null)
541 recipient = new ArrayList<vCard>(1);
542 recipient.add(vCard.parseVcard(reader, level));
738 return recipient;
741 public void setRecipient(vCard recipient) {
742 if(this.recipient == null)
743 this.recipient = new ArrayList<vCard>();
744 this.recipient.add(recipient)
    [all...]
  /external/chromium_org/chrome/installer/util/
installation_validator_unittest.cc 337 // validator are sent to an optional mock recipient (see
376 ValidationErrorRecipient* recipient);
480 ValidationErrorRecipient* recipient) {
481 validation_error_recipient_ = recipient;
604 StrictMock<MockValidationErrorRecipient> recipient; local
605 set_validation_error_recipient(&recipient);
  /frameworks/base/core/java/android/os/
Binder.java 371 public void linkToDeath(DeathRecipient recipient, int flags) {
377 public boolean unlinkToDeath(DeathRecipient recipient, int flags) {
444 public native void linkToDeath(DeathRecipient recipient, int flags)
446 public native boolean unlinkToDeath(DeathRecipient recipient, int flags);
490 private static final void sendDeathNotice(DeathRecipient recipient) {
491 if (false) Log.v("JavaBinder", "sendDeathNotice to " + recipient);
493 recipient.binderDied();
  /external/chromium_org/chrome/browser/extensions/api/usb/
usb_api.cc 44 using usb::Recipient;
69 static const char kErrorConvertRecipient[] = "Invalid transfer recipient.";
207 static bool ConvertRecipient(const Recipient& input,
402 const Recipient& input, UsbDeviceHandle::TransferRecipient* output) {
789 UsbDeviceHandle::TransferRecipient recipient; local
794 !ConvertRecipientSafely(transfer.recipient, &recipient)) {
814 recipient,
    [all...]
  /frameworks/base/services/java/com/android/server/
TextServicesManagerService.java 412 final InternalDeathRecipient recipient = local
415 if (recipient == null) {
417 Slog.w(TAG, "Didn't create a death recipient.");
432 recipient.mScLocale, recipient.mScListener, bundle);
759 InternalDeathRecipient recipient = null; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
virtualsocketserver.cc 791 VirtualSocket* recipient = LookupBinding(remote_addr); local
792 if (!recipient) {
793 // Make a fake recipient for address family checking.
806 if (!CanInteractWith(socket, recipient)) {
831 AddPacketToNetwork(socket, recipient, cur_time, data, data_size,
840 // recipient's recv_buffer_size_. Anything beyond that must be stored in the
845 VirtualSocket* recipient = LookupConnection(socket->local_addr_, local
847 if (!recipient) {
858 size_t available = recv_buffer_capacity_ - recipient->recv_buffer_size_;
864 AddPacketToNetwork(socket, recipient, cur_time, &socket->send_buffer_[0]
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/pem/
pem.h 185 PEM_USER **recipient; member in struct:pem_ctx_st
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
pem.h 185 PEM_USER **recipient; member in struct:pem_ctx_st
  /external/openssl/crypto/pem/
pem.h 185 PEM_USER **recipient; member in struct:pem_ctx_st
  /external/openssl/include/openssl/
pem.h 185 PEM_USER **recipient; member in struct:pem_ctx_st
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java 84 // new conversation where the recipient set is changing as the user
163 * Find the conversation matching the provided recipient set.
164 * When called with an empty recipient list, equivalent to {@link #createNew}.
236 * Returns true if the recipient in the uri matches the recipient list in this
256 String recipient = getRecipients(uri); local
257 incomingRecipient = ContactList.getByNumbers(recipient,
269 * The recipient list of this conversation can be empty if the results
502 // Invalidate thread ID because the recipient set has changed.
511 * Returns the recipient set of this conversation
    [all...]

Completed in 1238 milliseconds

1 2