Home | History | Annotate | Download | only in ui

Lines Matching refs:part

1186             PduPart part = body.getPart(i);
1187 String type = new String(part.getContentType());
1190 log("[CMA] haveSomethingToCopyToSDCard: part[" + i + "] contentType=" + type);
1248 PduPart part = body.getPart(i);
1249 String type = new String(part.getContentType());
1254 result &= copyPartToDrmProvider(part);
1260 private String mimeTypeOfDrmPart(PduPart part) {
1261 Uri uri = part.getDataUri();
1292 * Returns the type of the first drm'd pdu part.
1304 PduPart part = body.getPart(i);
1305 String type = new String(part.getContentType());
1308 return mimeTypeOfDrmPart(part);
1338 private boolean copyPartToDrmProvider(PduPart part) {
1339 Uri uri = part.getDataUri();
1348 byte[] location = part.getName();
1350 location = part.getFilename();
1353 location = part.getContentLocation();
1361 String type = new String(part.getContentType());
1405 PduPart part = body.getPart(i);
1406 String type = new String(part.getContentType());
1410 result &= copyPart(part, Long.toHexString(msgId)); // all parts have to be successful for a valid result.
1416 private boolean copyPart(PduPart part, String fallback) {
1417 Uri uri = part.getDataUri();
1426 byte[] location = part.getName();
1428 location = part.getFilename();
1431 location = part.getContentLocation();
1448 String type = new String(part.getContentType());
2288 // Removed search as part of b/1205708
2595 public void onResizeResult(PduPart part, boolean append) {
2596 if (part == null) {
2607 Uri dataUri = persister.persistPart(part, ContentUris.parseId(messageUri));