Searched refs:tpduLength (Results 1 - 1 of 1) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DUsimDataDownloadHandler.java82 int tpduLength = pdu.length - tpduIndex;
84 int bodyLength = getEnvelopeBodyLength(scAddressLength, tpduLength);
116 if (tpduLength > 127) {
119 envelope[index++] = (byte) tpduLength;
120 System.arraycopy(pdu, tpduIndex, envelope, index, tpduLength);
121 index += tpduLength;
141 * @param tpduLength the length of the TPDU from the SMS-PP message
144 private static int getEnvelopeBodyLength(int scAddressLength, int tpduLength) { argument
146 int length = tpduLength + 5;
148 length += (tpduLength > 12
[all...]

Completed in 140 milliseconds