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

/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWToolkit.java92 Thread toolkitThread = new Thread(mainTG, this, "AWT-LW");
93 toolkitThread.setDaemon(true);
94 toolkitThread.setPriority(Thread.NORM_PRIORITY + 1);
95 toolkitThread.start();
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DMToolkit.java149 Thread toolkitThread = new Thread(this, "AWT-Motif");
150 toolkitThread.setPriority(Thread.NORM_PRIORITY + 1);
151 toolkitThread.setDaemon(true);
181 toolkitThread.start();
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWToolkit.java236 Thread toolkitThread = new Thread(this, "AWT-Windows");
237 toolkitThread.setDaemon(true);
238 toolkitThread.start();
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXToolkit.java140 static Thread toolkitThread; field in class:XToolkit
142 return Thread.currentThread() == toolkitThread;
322 toolkitThread = AccessController.doPrivileged(action);
323 toolkitThread.start();

Completed in 48 milliseconds