Home
last modified time | relevance | path

Searched refs:bmsg (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
DBmessageBuilder.java62 public static String createBmessage(Bmessage bmsg) { in createBmessage() argument
65 b.build(bmsg); in createBmessage()
70 private void build(Bmessage bmsg) { in build() argument
72 + bmsg.mMessage.getBytes().length; in build()
77 mBmsg.append(BMSG_STATUS).append(bmsg.mBmsgStatus).append(CRLF); in build()
78 mBmsg.append(BMSG_TYPE).append(bmsg.mBmsgType).append(CRLF); in build()
79 mBmsg.append(BMSG_FOLDER).append(bmsg.mBmsgFolder).append(CRLF); in build()
81 for (VCardEntry vcard : bmsg.mOriginators) { in build()
88 for (VCardEntry vcard : bmsg.mRecipients) { in build()
95 if (bmsg.mBbodyEncoding != null) { in build()
[all …]
DRequestGetMessage.java79 String bmsg; in readResponse() local
81 bmsg = baos.toString(StandardCharsets.UTF_8.name()); in readResponse()
88 mBmessage = BmessageParser.createBmessage(bmsg); in readResponse()
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/
DMceStateMachine.java279 Bmessage bmsg = new Bmessage(); in sendMapMessage() local
281 bmsg.setType(getDefaultMessageType()); in sendMapMessage()
282 bmsg.setStatus(Bmessage.Status.READ); in sendMapMessage()
292 mDatabase.addThreadContactsToEntries(bmsg, contact.getLastPathSegment()); in sendMapMessage()
299 bmsg.addRecipient(destEntry); in sendMapMessage()
313 bmsg.setBodyContent(message); in sendMapMessage()
315 mSentReceiptRequested.put(bmsg, sentIntent); in sendMapMessage()
318 mDeliveryReceiptRequested.put(bmsg, deliveredIntent); in sendMapMessage()
320 sendMessage(MSG_OUTBOUND_MESSAGE, bmsg); in sendMapMessage()
DMapClientContent.java513 boolean addThreadContactsToEntries(Bmessage bmsg, String thread) { in addThreadContactsToEntries() argument
528 addRecipientsToEntries(bmsg, in addThreadContactsToEntries()
538 private void addRecipientsToEntries(Bmessage bmsg, String[] recipients) { in addRecipientsToEntries() argument
553 bmsg.addRecipient(destEntry); in addRecipientsToEntries()