Lines Matching refs:msgCount
131 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()
253 if (concatRef.msgCount != 0 && concatRef.seqNumber != 0 in fromByteArray()
254 && concatRef.seqNumber <= concatRef.msgCount) { in fromByteArray()
281 specialSmsMsg.msgCount = inStream.read(); in fromByteArray()
322 outStream.write(concatRef.msgCount); in toByteArray()
355 outStream.write(specialSmsMsg.msgCount & 0xFF); in toByteArray()