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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DUsimDataDownloadHandler.java80 int scAddressLength = pdu[0] & 0xff;
81 int tpduIndex = scAddressLength + 1; // start of TPDU
84 int bodyLength = getEnvelopeBodyLength(scAddressLength, tpduLength);
107 if (scAddressLength != 0) {
109 envelope[index++] = (byte) scAddressLength;
110 System.arraycopy(pdu, 1, envelope, index, scAddressLength);
111 index += scAddressLength;
140 * @param scAddressLength the length of the SMSC address, or zero if not present
144 private static int getEnvelopeBodyLength(int scAddressLength, int tpduLength) { argument
150 if (scAddressLength !
[all...]

Completed in 1107 milliseconds