Home
last modified time | relevance | path

Searched refs:BluetoothMapSmsPdu (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/map/
DBluetoothMapSmsPduTest.java32 import com.android.bluetooth.map.BluetoothMapSmsPdu.SmsPdu;
54 private static final int TEST_TYPE = BluetoothMapSmsPdu.SMS_TYPE_GSM;
111 BluetoothMapSmsPdu.getSubmitPdus( in getSubmitPdus_withTypeGSM_whenMsgCountIsMoreThanOne()
115 assertThat(pdus.get(0).getType()).isEqualTo(BluetoothMapSmsPdu.SMS_TYPE_GSM); in getSubmitPdus_withTypeGSM_whenMsgCountIsMoreThanOne()
139 ArrayList<SmsPdu> pdus = BluetoothMapSmsPdu.getSubmitPdus(mTargetContext, TEST_TEXT, null); in getSubmitPdus_withTypeCDMA()
142 assertThat(pdus.get(0).getType()).isEqualTo(BluetoothMapSmsPdu.SMS_TYPE_CDMA); in getSubmitPdus_withTypeCDMA()
165 BluetoothMapSmsPdu.getDeliverPdus( in getDeliverPdus_withTypeGSM()
169 assertThat(pdus.get(0).getType()).isEqualTo(BluetoothMapSmsPdu.SMS_TYPE_GSM); in getDeliverPdus_withTypeGSM()
194 BluetoothMapSmsPdu.getDeliverPdus( in getDeliverPdus_withTypeCDMA()
198 assertThat(pdus.get(0).getType()).isEqualTo(BluetoothMapSmsPdu.SMS_TYPE_CDMA); in getDeliverPdus_withTypeCDMA()
[all …]
DBluetoothMapbMessageSmsTest.java28 import com.android.bluetooth.map.BluetoothMapSmsPdu.SmsPdu;
56 BluetoothMapSmsPdu.getSubmitPdus(mTargetContext, TEST_MESSAGE, TEST_ADDRESS); in setUp()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapbMessageSms.java20 import com.android.bluetooth.map.BluetoothMapSmsPdu.SmsPdu;
62 BluetoothMapSmsPdu.decodePdu( in parseMsgPart()
65 ? BluetoothMapSmsPdu.SMS_TYPE_CDMA in parseMsgPart()
66 : BluetoothMapSmsPdu.SMS_TYPE_GSM); in parseMsgPart()
DBluetoothMapSmsPdu.java43 public class BluetoothMapSmsPdu { class
DBluetoothMapContent.java3721 BluetoothMapSmsPdu.getDeliverPdus(mContext, msgBody, phone, time)); in getSmsMessage()
3724 BluetoothMapSmsPdu.getSubmitPdus(mContext, msgBody, phone)); in getSmsMessage()