Searched refs:mWspData (Results 1 – 1 of 1) sorted by relevance
202 byte[] mWspData; field in WspTypeDecoder211 mWspData = pdu; in WspTypeDecoder()226 while (mWspData[index] != 0) { in decodeTextString()230 if (mWspData[startIndex] == 127) { in decodeTextString()231 mStringValue = new String(mWspData, startIndex + 1, mDataLength - 2); in decodeTextString()233 mStringValue = new String(mWspData, startIndex, mDataLength - 1); in decodeTextString()249 while (mWspData[index] != 0) { in decodeTokenText()253 mStringValue = new String(mWspData, startIndex, mDataLength - 1); in decodeTokenText()269 if ((mWspData[startIndex] & 0x80) == 0) { in decodeShortInteger()272 mUnsigned32bit = mWspData[startIndex] & 0x7f; in decodeShortInteger()[all …]