Searched defs:msgCount (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/
H A DSmsHeader.java83 public int msgCount; field in class:SmsHeader.ConcatRef
89 public int msgCount; field in class:SmsHeader.SpecialSmsMsg
140 concatRef.msgCount = inStream.read();
143 if (concatRef.msgCount != 0 && concatRef.seqNumber != 0 &&
144 concatRef.seqNumber <= concatRef.msgCount) {
151 concatRef.msgCount = inStream.read();
154 if (concatRef.msgCount != 0 && concatRef.seqNumber != 0 &&
155 concatRef.seqNumber <= concatRef.msgCount) {
182 specialSmsMsg.msgCount = inStream.read();
225 outStream.write(concatRef.msgCount);
[all...]
H A DGsmAlphabet.java87 public int msgCount; field in class:GsmAlphabet.TextEncodingDetails
122 "{ msgCount=" + msgCount +
841 ted.msgCount = (septets + (SmsConstants.MAX_USER_DATA_SEPTETS_WITH_HEADER - 1)) /
843 ted.codeUnitsRemaining = (ted.msgCount *
846 ted.msgCount = 1;
910 ted.msgCount = Integer.MAX_VALUE;
927 int msgCount;
935 msgCount = (septets + septetsPerMessage - 1) / septetsPerMessage;
936 septetsRemaining = (msgCount * septetsPerMessag
[all...]

Completed in 70 milliseconds