/external/chromium_org/jingle/notifier/listener/ |
notification_defines.h | 31 // A structure representing a <recipient/> block within a push message. 32 struct Recipient { 33 Recipient(); 34 ~Recipient(); 35 bool Equals(const Recipient& other) const; 37 // The bare jid of the recipient. 39 // User-specific data for the recipient. 43 typedef std::vector<Recipient> RecipientList;
|
notification_defines.cc | 45 Recipient::Recipient() {} 46 Recipient::~Recipient() {} 48 bool Recipient::Equals(const Recipient& other) const {
|
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);
|
/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...] |
usb_constants.py | 119 class Recipient(object): 120 """Request Recipient.
|
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...] |
/external/chromium_org/components/invalidation/ |
push_client_channel.cc | 62 notifier::Recipient recipient; local 63 recipient.to = kBotJid; 66 notification.recipients.push_back(recipient);
|
/external/chromium_org/extensions/browser/api/usb/ |
usb_api.h | 65 const extensions::core_api::usb::Recipient& input,
|
usb_api.cc | 48 using usb::Recipient; 92 const char kErrorConvertRecipient[] = "Invalid transfer recipient."; 146 bool ConvertRecipientFromApi(const Recipient& input, 566 const Recipient& input, 948 UsbDeviceHandle::TransferRecipient recipient; local 953 !ConvertRecipientSafely(transfer.recipient, &recipient)) { 973 recipient, [all...] |