HomeSort by relevance Sort by last modified time
    Searched refs:xmlMsgElement (Results 1 - 3 of 3) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapMessageListingElement.java 272 public void encode(XmlSerializer xmlMsgElement, boolean includeThreadId)
276 xmlMsgElement.startTag(null, "msg");
277 xmlMsgElement.attribute(null, "handle",
288 xmlMsgElement.attribute(null, "subject",
293 xmlMsgElement.attribute(null, "datetime", this.getDateTimeString());
295 xmlMsgElement.attribute(null, "sender_name",
298 xmlMsgElement.attribute(null, "sender_addressing", mSenderAddressing);
300 xmlMsgElement.attribute(null, "replyto_addressing",mReplytoAddressing);
302 xmlMsgElement.attribute(null, "recipient_name",
305 xmlMsgElement.attribute(null, "recipient_addressing", mRecipientAddressing)
    [all...]
BluetoothMapMessageListing.java 93 XmlSerializer xmlMsgElement = new FastXmlSerializer();
95 xmlMsgElement.setOutput(sw);
96 xmlMsgElement.startDocument("UTF-8", true);
97 xmlMsgElement.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
98 xmlMsgElement.startTag(null, "MAP-msg-listing");
99 xmlMsgElement.attribute(null, "version", version);
102 element.encode(xmlMsgElement, includeThreadId); // Append the list element
104 xmlMsgElement.endTag(null, "MAP-msg-listing");
105 xmlMsgElement.endDocument();
BluetoothMapFolderElement.java 255 XmlSerializer xmlMsgElement = new FastXmlSerializer();
268 xmlMsgElement.setOutput(sw);
269 xmlMsgElement.startDocument("UTF-8", true);
270 xmlMsgElement.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
271 xmlMsgElement.startTag(null, "folder-listing");
272 xmlMsgElement.attribute(null, "version", BluetoothMapUtils.MAP_V10_STR);
275 xmlMsgElement.startTag(null, "folder");
276 xmlMsgElement.attribute(null, "name", folders[i].getName());
277 xmlMsgElement.endTag(null, "folder");
279 xmlMsgElement.endTag(null, "folder-listing")
    [all...]

Completed in 195 milliseconds