Home | History | Annotate | Download | only in mime4j

Lines Matching defs:bd

137         BodyDescriptor bd = parseHeader(is);
139 if (bd.isMultipart()) {
140 bodyDescriptors.addFirst(bd);
142 handler.startMultipart(bd);
145 new MimeBoundaryInputStream(is, bd.getBoundary());
150 tempIs = new MimeBoundaryInputStream(is, bd.getBoundary());
171 } else if (bd.isMessage()) {
172 if (bd.isBase64Encoded()) {
176 } else if (bd.isQuotedPrintableEncoded()) {
181 bodyDescriptors.addFirst(bd);
185 handler.body(bd, new CloseShieldInputStream(is));
227 BodyDescriptor bd = new BodyDescriptor(bodyDescriptors.isEmpty()
293 bd.addField(fieldName, field.substring(index + 1));
311 return bd;