Home
last modified time | relevance | path

Searched refs:BluetoothMapbMessage (Results 1 – 13 of 13) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/map/
DBluetoothMapbMessageTest.java26 import com.android.bluetooth.map.BluetoothMapbMessage.VCard;
61 BluetoothMapbMessage messageMime = new BluetoothMapbMessageMime(); in settersAndGetters()
78 BluetoothMapbMessage messageMime = new BluetoothMapbMessageMime(); in setCompleteFolder()
85 BluetoothMapbMessage messageMime = new BluetoothMapbMessageMime(); in addOriginator_forVCardVersionTwoPointOne()
95 BluetoothMapbMessage messageMime = new BluetoothMapbMessageMime(); in addOriginator_withVCardObject()
102 BluetoothMapbMessage messageMime = new BluetoothMapbMessageMime(); in addOriginator_forVCardVersionThree()
120 BluetoothMapbMessage messageMime = new BluetoothMapbMessageMime(); in addOriginator_forVCardVersionThree_withOnlyBtUcisAndBtUids()
128 BluetoothMapbMessage messageMime = new BluetoothMapbMessageMime(); in addRecipient_forVCardVersionTwoPointOne()
138 BluetoothMapbMessage messageMime = new BluetoothMapbMessageMime(); in addRecipient_forVCardVersionThree()
155 BluetoothMapbMessage messageMime = new BluetoothMapbMessageMime(); in addRecipient_forVCardVersionThree_withOnlyBtUcisAndBtUids()
[all …]
DBluetoothMapbMessageEmailTest.java55 BluetoothMapbMessage messageParsed = in encodeToByteArray_thenCreateByParsing()
56 BluetoothMapbMessage.parse(inputStream, BluetoothMapAppParams.CHARSET_UTF8); in encodeToByteArray_thenCreateByParsing()
72 BluetoothMapbMessage messageParsed = in encodeToByteArray_withEmptyBody_thenCreateByParsing()
73 BluetoothMapbMessage.parse(inputStream, BluetoothMapAppParams.CHARSET_UTF8); in encodeToByteArray_withEmptyBody_thenCreateByParsing()
DBluetoothMapbMessageSmsTest.java87 BluetoothMapbMessage messageParsed = in encodeToByteArray_thenAddByParsing()
88 BluetoothMapbMessage.parse(inputStream, BluetoothMapAppParams.CHARSET_NATIVE); in encodeToByteArray_thenAddByParsing()
104 BluetoothMapbMessage messageParsed = in encodeToByteArray_withEmptyMessage_thenAddByParsing()
105 BluetoothMapbMessage.parse(inputStream, BluetoothMapAppParams.CHARSET_UTF8); in encodeToByteArray_withEmptyMessage_thenAddByParsing()
DBluetoothMapSmsPduTest.java125 BluetoothMapbMessage messageParsed = in getSubmitPdus_withTypeGSM_whenMsgCountIsMoreThanOne()
126 BluetoothMapbMessage.parse(inputStream, BluetoothMapAppParams.CHARSET_NATIVE); in getSubmitPdus_withTypeGSM_whenMsgCountIsMoreThanOne()
152 BluetoothMapbMessage messageParsed = in getSubmitPdus_withTypeCDMA()
153 BluetoothMapbMessage.parse(inputStream, BluetoothMapAppParams.CHARSET_NATIVE); in getSubmitPdus_withTypeCDMA()
183 BluetoothMapbMessage.parse( in getDeliverPdus_withTypeGSM()
212 BluetoothMapbMessage.parse( in getDeliverPdus_withTypeCDMA()
DBluetoothMapbMessageVCardTest.java25 import com.android.bluetooth.map.BluetoothMapbMessage.BMsgReader;
26 import com.android.bluetooth.map.BluetoothMapbMessage.VCard;
DBluetoothMapContentTest.java910 BluetoothMapbMessage messageParsed = in getEmailMessage_withFileNotFoundExceptionForEmailBodyAccess()
911 BluetoothMapbMessage.parse(inputStream, BluetoothMapAppParams.CHARSET_UTF8); in getEmailMessage_withFileNotFoundExceptionForEmailBodyAccess()
963 BluetoothMapbMessage messageParsed = in getEmailMessage_withNullPointerExceptionForEmailBodyAccess()
964 BluetoothMapbMessage.parse(inputStream, BluetoothMapAppParams.CHARSET_UTF8); in getEmailMessage_withNullPointerExceptionForEmailBodyAccess()
1016 BluetoothMapbMessage messageParsed = in getEmailMessage()
1017 BluetoothMapbMessage.parse(inputStream, BluetoothMapAppParams.CHARSET_UTF8); in getEmailMessage()
1102 BluetoothMapbMessage messageMimeParsed = BluetoothMapbMessage.parse(inputStream, 1); in getIMMessage_withSentFolderId()
1162 BluetoothMapbMessage messageMimeParsed = BluetoothMapbMessage.parse(inputStream, 1); in getIMMessage_withInboxFolderId()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapbMessageEmail.java28 public class BluetoothMapbMessageEmail extends BluetoothMapbMessage {
DBluetoothMapbMessage.java34 public abstract class BluetoothMapbMessage { class
492 public BluetoothMapbMessage() {} in BluetoothMapbMessage() method in BluetoothMapbMessage
507 public static BluetoothMapbMessage parse(InputStream bMsgStream, int appParamCharset) in parse()
510 BluetoothMapbMessage newBMsg = null; in parse()
DBluetoothMapbMessageSms.java26 public class BluetoothMapbMessageSms extends BluetoothMapbMessage {
DBluetoothMapContentObserver.java3070 BluetoothMapbMessage msg, in pushMessage()
3076 ArrayList<BluetoothMapbMessage.VCard> recipientList = msg.getRecipients(); in pushMessage()
3087 BluetoothMapbMessage.VCard empty = in pushMessage()
3088 new BluetoothMapbMessage.VCard("", "", null, null, 0); in pushMessage()
3089 recipientList = new ArrayList<BluetoothMapbMessage.VCard>(); in pushMessage()
3208 for (BluetoothMapbMessage.VCard recipient : recipientList) { in pushMessage()
3224 for (BluetoothMapbMessage.VCard recipient : recipientList) { in pushMessage()
DBluetoothMapbMessageMime.java38 public class BluetoothMapbMessageMime extends BluetoothMapbMessage {
DBluetoothMapObexServer.java723 BluetoothMapbMessage message; in pushMessage()
726 message = BluetoothMapbMessage.parse(bMsgStream, appParams.getCharset()); in pushMessage()
DBluetoothMapContent.java3590 BluetoothMapbMessage message, String phone, boolean incoming) { in setVCardFromPhoneNumber()