Home | History | Annotate | Download | only in unitTests

Lines Matching refs:pduDecoder

1847             WspTypeDecoder pduDecoder = new WspTypeDecoder(pdu);
1849 res = pduDecoder.seekXWapApplicationId(mWspHeaderStart,
1853 int index = (int) pduDecoder.getValue32();
1854 res = pduDecoder.decodeXWapApplicationId(index);
1858 + ", val: " + pduDecoder.getValue32());
1859 assertTrue(mAppIdValue == (int) pduDecoder.getValue32());
1875 WspTypeDecoder pduDecoder = new WspTypeDecoder(pdu);
1877 res = pduDecoder.seekXWapApplicationId(mWspHeaderStart,
1897 WspTypeDecoder pduDecoder = new WspTypeDecoder(pdu);
1899 res = pduDecoder.seekXWapApplicationId(mWspHeaderStart,
1903 int index = (int) pduDecoder.getValue32();
1904 res = pduDecoder.decodeXWapApplicationId(index);
1908 + ", val: " + pduDecoder.getValue32());
1909 assertTrue(mAppIdValue == (int) pduDecoder.getValue32());
1944 WspTypeDecoder pduDecoder = new WspTypeDecoder(pdu);
1946 res = pduDecoder.seekXWapApplicationId(mWspHeaderStart,
1969 WspTypeDecoder pduDecoder = new WspTypeDecoder(pdu);
1971 res = pduDecoder.seekXWapApplicationId(mWspHeaderStart,
1975 int index = (int) pduDecoder.getValue32();
1976 res = pduDecoder.decodeXWapApplicationId(index);
1980 + pduDecoder.getValueString() + "]");
1981 assertTrue(mAppIdName.equals(pduDecoder.getValueString()));
2001 WspTypeDecoder pduDecoder = new WspTypeDecoder(pdu);
2003 res = pduDecoder.seekXWapApplicationId(mWspHeaderStart,
2007 int index = (int) pduDecoder.getValue32();
2008 res = pduDecoder.decodeXWapApplicationId(index);
2012 + pduDecoder.getValueString() + "]");
2013 assertTrue(mAppIdName.equals(pduDecoder.getValueString()));
2032 WspTypeDecoder pduDecoder = new WspTypeDecoder(pdu);
2034 res = pduDecoder.decodeContentType(mWspContentTypeStart);
2038 + pduDecoder.getValueString() + "]");
2039 assertTrue(mContentTypeName.equals(pduDecoder.getValueString()));
2066 WspTypeDecoder pduDecoder = new WspTypeDecoder(pdu);
2074 if (pduDecoder.decodeUintvarInteger(index) == false) {
2078 headerLength = (int) pduDecoder.getValue32();
2079 index += pduDecoder.getDecodedDataLength();
2095 if (pduDecoder.decodeContentType(index) == false) {
2100 String mimeType = pduDecoder.getValueString();
2101 long binaryContentType = pduDecoder.getValue32();
2102 index += pduDecoder.getDecodedDataLength();
2123 if (pduDecoder.seekXWapApplicationId(index, index + headerLength - 1)) {
2124 index = (int) pduDecoder.getValue32();
2125 pduDecoder.decodeXWapApplicationId(index);
2126 String wapAppId = pduDecoder.getValueString();
2128 wapAppId = Integer.toString((int) pduDecoder.getValue32());
2147 pduDecoder.getContentParameters());