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

/openjdk7/jdk/src/solaris/classes/sun/print/
H A DUnixPrintJob.java835 String banner, int copies, String spoolFile) {
907 execCmd[n++] = spoolFile;
922 private File spoolFile; field in class:UnixPrintJob
935 spoolFile = new File(mDestination);
942 spoolFile = Files.createTempFile("javaprint", "").toFile();
943 spoolFile.deleteOnExit();
945 result = new FileOutputStream(spoolFile);
985 if (spoolFile == null || !spoolFile.exists()) {
994 String fileName = spoolFile
833 printExecCmd(String printer, String options, boolean noJobSheet, String banner, int copies, String spoolFile) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPrinterJob.java292 File spoolFile; field in class:PSPrinterJob
516 spoolFile = new File(mDestination);
517 output = new FileOutputStream(spoolFile);
663 spoolFile = Files.createTempFile("javaprint", ".ps").toFile();
664 spoolFile.deleteOnExit();
666 result = new FileOutputStream(spoolFile);
705 if (spoolFile == null || !spoolFile.exists()) {
713 String fileName = spoolFile.getAbsolutePath();
729 spoolFile
1536 printExecCmd(String printer, String options, boolean noJobSheet, String banner, int copies, String spoolFile) argument
[all...]

Completed in 230 milliseconds