Home | History | Annotate | Download | only in pdu

Lines Matching refs:PduPart

170                     PduPart firstPart = mBody.getPart(0);
709 mStartParam = (byte[]) map.get(PduPart.P_START);
712 mTypeParam= (byte[]) map.get(PduPart.P_TYPE);
747 PduPart part = new PduPart();
764 byte[] name = (byte[]) map.get(PduPart.P_NAME);
770 Integer charset = (Integer) map.get(PduPart.P_CHARSET);
814 if (encoding.equalsIgnoreCase(PduPart.P_BASE64)) {
817 } else if (encoding.equalsIgnoreCase(PduPart.P_QUOTED_PRINTABLE)) {
1286 case PduPart.P_TYPE:
1287 case PduPart.P_CT_MR_TYPE:
1297 map.put(PduPart.P_TYPE, type);
1305 map.put(PduPart.P_TYPE, type);
1326 case PduPart.P_START:
1327 case PduPart.P_DEP_START:
1330 map.put(PduPart.P_START, start);
1351 case PduPart.P_CHARSET:
1363 map.put(PduPart.P_CHARSET, charsetInt);
1367 map.put(PduPart.P_CHARSET, CharacterSets.ANY_CHARSET);
1373 map.put(PduPart.P_CHARSET, charset);
1389 case PduPart.P_DEP_NAME:
1390 case PduPart.P_NAME:
1393 map.put(PduPart.P_NAME, name);
1496 PduPart part, int length) {
1528 case PduPart.P_CONTENT_LOCATION:
1541 case PduPart.P_CONTENT_ID:
1554 case PduPart.P_DEP_CONTENT_DISPOSITION:
1555 case PduPart.P_CONTENT_DISPOSITION:
1579 if (value == PduPart.P_DISPOSITION_FROM_DATA ) {
1580 part.setContentDisposition(PduPart.DISPOSITION_FROM_DATA);
1581 } else if (value == PduPart.P_DISPOSITION_ATTACHMENT) {
1582 part.setContentDisposition(PduPart.DISPOSITION_ATTACHMENT);
1583 } else if (value == PduPart.P_DISPOSITION_INLINE) {
1584 part.setContentDisposition(PduPart.DISPOSITION_INLINE);
1596 if (value == PduPart.P_FILENAME) { //filename is text-string
1632 PduPart.CONTENT_TRANSFER_ENCODING.equalsIgnoreCase(new String(tempHeader))) {
1666 private static int checkPartPosition(PduPart part) {