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.java54 concatRef.msgCount = 0x03; in setUp()
61 specialSmsMessage1.msgCount = 0x02; in setUp()
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
DTelephonyBackupAgent.java679 int msgCount = 0;
689 values[(msgCount++) % bulkInsertSize] = cv;
690 if (msgCount % bulkInsertSize == 0) {
699 if (msgCount % bulkInsertSize > 0) {
701 Arrays.copyOf(values, msgCount % bulkInsertSize));
704 incremenentSharedPref(true, msgCount, numExceptions);
707 void incremenentSharedPref(boolean sms, int msgCount, int numExceptions) {
711 editor.putInt(NUM_SMS_RESTORED, sp.getInt(NUM_SMS_RESTORED, 0) + msgCount);
719 editor.putInt(NUM_MMS_RESTORED, sp.getInt(NUM_MMS_RESTORED, 0) + msgCount);
/packages/apps/Bluetooth/src/com/android/bluetooth/util/
DGsmAlphabet.java81 public int msgCount; field in GsmAlphabet.TextEncodingDetails
116 + "{ msgCount=" + msgCount in toString()