Searched defs:printServices (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/print/
H A DWin32PrintServiceLookup.java55 private PrintService[] printServices; /* includes the default printer */ field in class:Win32PrintServiceLookup
111 if (printServices == null) {
114 return printServices;
122 printServices = new PrintService[0];
133 if (printServices == null) {
137 for (j = 0; j < printServices.length; j++) {
138 if ((printServices[j]!= null) &&
139 (printers[p].equals(printServices[j].getName()))) {
140 newServices[p] = printServices[j];
141 printServices[
[all...]
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DUnixPrintServiceLookup.java70 private PrintService[] printServices; /* includes the default printer */ field in class:UnixPrintServiceLookup
192 if (printServices == null || !pollServices) {
195 if (printServices == null) {
198 return printServices;
203 // refreshes "printServices"
229 printServices = new PrintService[1];
230 printServices[0] = defaultPrintService;
232 printServices = null;
248 if (printServices == null) {
268 for (j=0; j<printServices
[all...]

Completed in 30 milliseconds