Searched refs:scAddressLength (Results 1 – 1 of 1) sorted by relevance
122 int scAddressLength = pdu[0] & 0xff; in handleDataDownload() local123 int tpduIndex = scAddressLength + 1; // start of TPDU in handleDataDownload()126 int bodyLength = getEnvelopeBodyLength(scAddressLength, tpduLength); in handleDataDownload()149 if (scAddressLength != 0) { in handleDataDownload()151 envelope[index++] = (byte) scAddressLength; in handleDataDownload()152 System.arraycopy(pdu, 1, envelope, index, scAddressLength); in handleDataDownload()153 index += scAddressLength; in handleDataDownload()189 private static int getEnvelopeBodyLength(int scAddressLength, int tpduLength) { in getEnvelopeBodyLength() argument195 if (scAddressLength != 0) { in getEnvelopeBodyLength()196 length = length + 2 + scAddressLength; in getEnvelopeBodyLength()