Home
last modified time | relevance | path

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

/packages/modules/CellBroadcastService/src/com/android/cellbroadcastservice/
DSmsHeader.java131 public int msgCount; field in SmsHeader.ConcatRef
141 && msgCount == concatRef.msgCount in equals()
147 return Objects.hash(refNumber, seqNumber, msgCount, isEightBits); in hashCode()
156 public int msgCount; field in SmsHeader.SpecialSmsMsg
164 && msgCount == that.msgCount; in equals()
169 return Objects.hash(msgIndType, msgCount); in hashCode()
239 concatRef.msgCount = inStream.read(); in fromByteArray()
242 if (concatRef.msgCount != 0 && concatRef.seqNumber != 0 in fromByteArray()
243 && concatRef.seqNumber <= concatRef.msgCount) { in fromByteArray()
250 concatRef.msgCount = inStream.read(); in fromByteArray()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapSmsPdu.java529 int msgCount = ted[0]; in getSubmitPdus() local
536 ArrayList<SmsPdu> pdus = new ArrayList<SmsPdu>(msgCount); in getSubmitPdus()
550 if (msgCount == 1) { in getSubmitPdus()
558 for (int i = 0; i < msgCount; i++) { in getSubmitPdus()
561 languageShiftTable, refNumber, i + 1, msgCount); in getSubmitPdus()
/packages/modules/CellBroadcastService/tests/src/com/android/cellbroadcastservice/tests/
DSmsHeaderTest.java51 concatRef.msgCount = 0x03; in setUp()
58 specialSmsMessage1.msgCount = 0x02; in setUp()
/packages/apps/Bluetooth/src/com/android/bluetooth/util/
DGsmAlphabet.java81 public int msgCount; field in GsmAlphabet.TextEncodingDetails
116 + "{ msgCount=" + msgCount in toString()
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
DTelephonyBackupAgent.java629 int msgCount = 0;
637 values[(msgCount++) % bulkInsertSize] = cv;
638 if (msgCount % bulkInsertSize == 0) {
642 if (msgCount % bulkInsertSize > 0) {
644 Arrays.copyOf(values, msgCount % bulkInsertSize));