Searched defs:recipient (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/jingle/notifier/listener/
H A Dpush_notifications_send_update_task.cc47 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;
/external/chromium_org/sync/notifier/
H A Dpush_client_channel.cc131 notifier::Recipient recipient; local
132 recipient.to = kBotJid;
135 notification.recipients.push_back(recipient);
/external/chromium_org/chrome/browser/extensions/api/storage/
H A Dsettings_apitest.cc73 explicit SyncChangeProcessorDelegate(syncer::SyncChangeProcessor* recipient) argument
74 : recipient_(recipient) {
87 // The recipient of all sync changes.
H A Dsettings_sync_unittest.cc156 explicit SyncChangeProcessorDelegate(syncer::SyncChangeProcessor* recipient) argument
157 : recipient_(recipient) {
170 // The recipient of all sync changes.
/external/chromium_org/chrome/browser/notifications/sync_notifier/
H A Dchrome_notifier_service_unittest.cc169 explicit SyncChangeProcessorDelegate(SyncChangeProcessor* recipient) argument
170 : recipient_(recipient) {
183 // The recipient of all sync changes.
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DApplicationTest.java299 public void linkToDeath(DeathRecipient recipient, int flags) throws RemoteException { argument
303 public boolean unlinkToDeath(DeathRecipient recipient, int flags) { argument
/external/tcpdump/
H A Dprint-zephyr.c53 const char *recipient; member in struct:z_packet
110 z_triple(char *class, char *inst, const char *recipient) argument
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));
/external/chromium_org/chrome/browser/usb/
H A Dusb_device_handle.cc41 const UsbDeviceHandle::TransferRecipient recipient) {
59 switch (recipient) {
395 const TransferRequestType request_type, const TransferRecipient recipient,
412 recipient);
39 CreateRequestType(const UsbEndpointDirection direction, const UsbDeviceHandle::TransferRequestType request_type, const UsbDeviceHandle::TransferRecipient recipient) argument
394 ControlTransfer(const UsbEndpointDirection direction, const TransferRequestType request_type, const TransferRecipient recipient, const uint8 request, const uint16 value, const uint16 index, net::IOBuffer* buffer, const size_t length, const unsigned int timeout, const UsbTransferCallback& callback) argument
/external/chromium_org/chrome/browser/sync/glue/
H A Dfavicon_cache_unittest.cc104 explicit SyncChangeProcessorDelegate(syncer::SyncChangeProcessor* recipient);
113 // The recipient of all sync changes.
120 syncer::SyncChangeProcessor* recipient)
121 : recipient_(recipient) {
119 SyncChangeProcessorDelegate( syncer::SyncChangeProcessor* recipient) argument
/external/chromium_org/chrome/installer/util/
H A Dinstallation_validator_unittest.cc337 // 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);
479 set_validation_error_recipient( ValidationErrorRecipient* recipient) argument
/external/chromium_org/chrome/browser/extensions/api/usb/
H A Dusb_api.cc69 static const char kErrorConvertRecipient[] = "Invalid transfer recipient.";
789 UsbDeviceHandle::TransferRecipient recipient; local
794 !ConvertRecipientSafely(transfer.recipient, &recipient)) {
814 recipient,
/external/chromium_org/chrome/browser/history/
H A Dhistory_unittest.cc1574 explicit SyncChangeProcessorDelegate(syncer::SyncChangeProcessor* recipient) argument
1575 : recipient_(recipient) {
1589 // The recipient of all sync changes.
/external/chromium_org/chrome/browser/search_engines/
H A Dtemplate_url_service_sync_unittest.cc145 explicit SyncChangeProcessorDelegate(syncer::SyncChangeProcessor* recipient);
154 // The recipient of all sync changes.
161 syncer::SyncChangeProcessor* recipient)
162 : recipient_(recipient) {
160 SyncChangeProcessorDelegate( syncer::SyncChangeProcessor* recipient) argument
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLTreeBuilder.cpp209 void giveRemainingTo(StringBuilder& recipient) argument
212 recipient.append(m_characters->characters8() + m_current, m_end - m_current);
214 recipient.append(m_characters->characters16() + m_current, m_end - m_current);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dvirtualsocketserver.cc791 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_tim
886 AddPacketToNetwork(VirtualSocket* sender, VirtualSocket* recipient, uint32 cur_time, const char* data, size_t data_size, size_t header_size, bool ordered) argument
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/pem/
H A Dpem.h185 PEM_USER **recipient; member in struct:pem_ctx_st
/external/chromium_org/third_party/openssl/openssl/include/openssl/
H A Dpem.h185 PEM_USER **recipient; member in struct:pem_ctx_st
/external/openssl/crypto/pem/
H A Dpem.h185 PEM_USER **recipient; member in struct:pem_ctx_st
/external/openssl/include/openssl/
H A Dpem.h185 PEM_USER **recipient; member in struct:pem_ctx_st
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dwindows_usb.c3389 static int _hid_get_descriptor(struct hid_device_priv* dev, HANDLE hid_handle, int recipient, argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 635 milliseconds