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

1 2 3 4

  /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 219 String recipient = request.getRecipient(); local
220 recipient = (Mms.isEmailAddress(recipient))?
221 Mms.extractAddrSpec(recipient): PhoneNumberUtils.stripSeparators(recipient);
222 MmsReportStatus status = queryStatusByRecipient(reportStatus, recipient);
253 Map<String, MmsReportStatus> status, String recipient) {
258 if (Mms.isEmailAddress(recipient)) {
259 if (TextUtils.equals(r, recipient)) {
263 else if (PhoneNumberUtils.compare(r, recipient)) {
306 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 37 super(context, R.layout.delivery_report_list_item, R.id.recipient, items);
57 listItem.bind(item.recipient, item.status, item.deliveryDate);
  /external/chromium_org/tools/usb_gadget/
gadget.py 112 recipient = request_type & usb_constants.Recipient.MASK
115 recipient, request, value, index, length)
118 recipient, request, value, index, length)
121 recipient, request, value, index, length)
138 recipient = request_type & usb_constants.Recipient.MASK
141 recipient, request, value, index, data)
144 recipient, request, value, index, data)
147 recipient, request, value, index, data
    [all...]
hid_gadget.py 135 def GetDescriptor(self, recipient, typ, index, lang, length):
136 if recipient == usb_constants.Recipient.INTERFACE:
141 return super(HidGadget, self).GetDescriptor(recipient, typ, index, lang,
144 def ClassControlRead(self, recipient, request, value, index, length):
151 recipient: Request recipient (device, interface, endpoint, etc.)
161 if recipient != usb_constants.Recipient.INTERFACE:
172 def ClassControlWrite(self, recipient, request, value, index, data)
    [all...]
  /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 106 * 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)
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);
Binder.java 390 public void linkToDeath(DeathRecipient recipient, int flags) {
396 public boolean unlinkToDeath(DeathRecipient recipient, int flags) {
502 public native void linkToDeath(DeathRecipient recipient, int flags)
504 public native boolean unlinkToDeath(DeathRecipient recipient, int flags);
548 private static final void sendDeathNotice(DeathRecipient recipient) {
549 if (false) Log.v("JavaBinder", "sendDeathNotice to " + recipient);
551 recipient.binderDied();
  /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 base::Base64Encode(recipient.user_specific_data, &base64_data);
  /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...]
  /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);
150 z.recipient = 0;
180 PARSE_FIELD_STR(z.recipient);
315 if (!*z.recipient)
316 z.recipient = "*";
318 printf(" to %s", z_triple(z.class, z.inst, z.recipient));
    [all...]
  /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 42 virtual status_t linkToDeath(const sp<DeathRecipient>& recipient,
46 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
IBinder.h 91 * Register the @a recipient for a notification if this binder
105 * @note This link always holds a weak reference to its recipient.
112 virtual status_t linkToDeath(const sp<DeathRecipient>& recipient,
118 * The @a recipient will no longer be called if this object
120 * supply a NULL @a recipient, and the recipient previously
123 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
  /external/chromium_org/third_party/libaddressinput/src/cpp/test/
address_data_test.cc 36 using i18n::addressinput::RECIPIENT;
47 address.recipient = "nnn";
63 EXPECT_EQ(address.recipient,
64 address.GetFieldValue(RECIPIENT));
86 EXPECT_TRUE(address.IsFieldEmpty(RECIPIENT));
96 address.recipient = "nnn";
106 EXPECT_FALSE(address.IsFieldEmpty(RECIPIENT));
111 address.recipient = " ";
112 EXPECT_TRUE(address.IsFieldEmpty(RECIPIENT));
113 address.recipient = "abc"
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
address_data.h 62 // Name of recipient or contact person. Not present in xAL.
63 std::string recipient; member in struct:i18n::addressinput::AddressData
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/
address_data.cc 45 &AddressData::recipient
118 recipient == other.recipient;
150 "recipient: \"" << address.recipient << "\"\n";
  /frameworks/base/core/java/android/database/
CursorToBulkCursorAdaptor.java 58 public ContentObserverProxy(IContentObserver remoteObserver, DeathRecipient recipient) {
62 remoteObserver.asBinder().linkToDeath(recipient, 0);
68 public boolean unlinkToDeath(DeathRecipient recipient) {
69 return mRemote.asBinder().unlinkToDeath(recipient, 0);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogListItemHelper.java 253 final CharSequence recipient; local
255 recipient = details.name;
257 recipient = mPhoneNumberHelper.getDisplayNumber(details.accountHandle,
260 return recipient;
  /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);
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventTarget.h 209 #define DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(recipient, attribute) \
213 #define DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(type, recipient, attribute) \
214 EventListener* type::on##attribute() { return recipient ? recipient->getAttributeEventListener(EventTypeNames::attribute) : 0; } \
217 if (recipient) \
218 recipient->setAttributeEventListener(EventTypeNames::attribute, listener); \
  /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 356 // 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) {
504 LOGDEATH("DRL @ %p : add JDR %p", this, recipient.get())
    [all...]

Completed in 295 milliseconds

1 2 3 4