HomeSort by relevance Sort by last modified time
    Searched refs:recipient (Results 26 - 50 of 83) sorted by null

12 3 4

  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/
irc.js 36 this.sendMessage = function(recipient, message) {
37 sendCommand(commands.PRIVMSG, [recipient], message);
  /external/chromium_org/chrome/test/functional/
chromeos_txt_msg_functional.py 38 recipient = ('%s@%s' % (phone_number,
40 self._SendMail(mail_server, sender, recipient, None, msg)
117 # Obtain sender, recipient, and SMTP instance.
  /frameworks/native/libs/binder/
Binder.cpp 120 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags)
126 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags,
  /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);
  /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...]
virtualsocketserver.h 174 void AddPacketToNetwork(VirtualSocket* socket, VirtualSocket* recipient,
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java     [all...]
  /external/chromium_org/chrome/browser/usb/
usb_device_handle.h 84 const TransferRecipient recipient,
usb_device_handle.cc 41 const UsbDeviceHandle::TransferRecipient recipient) {
59 switch (recipient) {
395 const TransferRequestType request_type, const TransferRecipient recipient,
412 recipient);
  /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...]
  /cts/tests/tests/os/src/android/os/cts/
MessengerTest.java 65 public void linkToDeath(DeathRecipient recipient, int flags) throws RemoteException {
81 public boolean unlinkToDeath(DeathRecipient recipient, int flags) {
  /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/opt/mms/src/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/native/include/gui/
SurfaceComposerClient.h 65 status_t linkToComposerDeath(const sp<IBinder::DeathRecipient>& recipient,
  /external/chromium_org/chrome/browser/extensions/api/storage/
settings_apitest.cc 73 explicit SyncChangeProcessorDelegate(syncer::SyncChangeProcessor* recipient)
74 : recipient_(recipient) {
87 // The recipient of all sync changes.
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ApplicationTest.java 299 public void linkToDeath(DeathRecipient recipient, int flags) throws RemoteException {
303 public boolean unlinkToDeath(DeathRecipient recipient, int flags) {
  /packages/apps/Mms/src/com/android/mms/ui/
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/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...]
usb_apitest.cc 40 const TransferRequestType request_type, const TransferRecipient recipient,
  /external/clang/www/demo/
index.cgi 108 my ( $recipient, $body ) = @_;
110 new Mail::Send( Subject => "LLVM Demo Page Run", To => $recipient );
  /external/chromium_org/chrome/browser/notifications/sync_notifier/
chrome_notifier_service_unittest.cc 169 explicit SyncChangeProcessorDelegate(SyncChangeProcessor* recipient)
170 : recipient_(recipient) {
183 // The recipient of all sync changes.
  /device/google/accessory/arduino/USB_Host_Shield/
Usb.h 79 byte recipient: 5; // Recipient of the request member in struct:__anon1996::__anon1997::__anon1998
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapContentObserver.java 647 Log.d(TAG, "empty recipient list");
651 for (BluetoothMapbMessage.vCard recipient : recipientList) {
652 if(recipient.getEnvLevel() == 0) // Only send the message to the top level recipient
655 String phone = recipient.getFirstPhoneNumber();
    [all...]
  /frameworks/base/core/java/android/app/
Instrumentation.java 315 * @param recipient Called the next time the thread's message queue is
318 public void waitForIdle(Runnable recipient) {
319 mMessageQueue.addIdleHandler(new Idler(recipient));
863 * be processed. Finished at some point after the recipient has returned
    [all...]
  /frameworks/native/libs/gui/
SurfaceComposerClient.cpp 455 const sp<IBinder::DeathRecipient>& recipient,
458 return sm->asBinder()->linkToDeath(recipient, cookie, flags);

Completed in 3254 milliseconds

12 3 4