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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DUsimDataDownloadHandler.java118 int scAddressLength = pdu[0] & 0xff;
119 int tpduIndex = scAddressLength + 1; // start of TPDU
122 int bodyLength = getEnvelopeBodyLength(scAddressLength, tpduLength);
145 if (scAddressLength != 0) {
147 envelope[index++] = (byte) scAddressLength;
148 System.arraycopy(pdu, 1, envelope, index, scAddressLength);
149 index += scAddressLength;
178 * @param scAddressLength the length of the SMSC address, or zero if not present
182 private static int getEnvelopeBodyLength(int scAddressLength, int tpduLength) { argument
188 if (scAddressLength !
[all...]

Completed in 66 milliseconds