Lines Matching defs:out
175 System.out.print("Enter password for " + keyFile + " (password will not be hidden): ");
176 System.out.flush();
355 public CountOutputStream(OutputStream out) {
356 super(out);
378 private static void writeSignatureFile(Manifest manifest, OutputStream out,
414 CountOutputStream cout = new CountOutputStream(out);
427 /** Sign data and write the digital signature to 'out'. */
430 OutputStream out)
454 DEROutputStream dos = new DEROutputStream(out);
464 private static void copyFiles(Manifest manifest, JarFile in, JarOutputStream out,
513 out.putNextEntry(outEntry);
517 out.write(buffer, 0, num);
520 out.flush();
534 out.putNextEntry(outEntry);
538 out.write(buffer, 0, num);
540 out.flush();
549 public WholeFileSignerOutputStream(OutputStream out, OutputStream tee) {
550 super(out);
583 // write to both output streams. out is the CMSTypedData signer and tee is the file.
584 out.write(b, off, len);
596 // write to both output streams. out is the CMSTypedData signer and tee is the file.
597 out.write(b);
632 public void write(OutputStream out) throws IOException {
634 signer = new WholeFileSignerOutputStream(out, outputStream);