Searched refs:partBoundary (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/com/android/internal/http/multipart/
H A DPart.java368 * @param partBoundary The ASCII bytes to use as the part boundary.
374 public static void sendParts(OutputStream out, Part[] parts, byte[] partBoundary) argument
380 if (partBoundary == null || partBoundary.length == 0) {
381 throw new IllegalArgumentException("partBoundary may not be empty");
385 parts[i].setPartBoundary(partBoundary);
389 out.write(partBoundary);
411 * @param partBoundary The ASCII bytes to use as the part boundary.
418 public static long getLengthOfParts(Part[] parts, byte[] partBoundary) throws IOException { argument
426 parts[i].setPartBoundary(partBoundary);
[all...]

Completed in 58 milliseconds