Searched refs:tg (Results 26 - 36 of 36) sorted by relevance

12

/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCFontManager.java225 ThreadGroup tg =
227 for (ThreadGroup tgn = tg;
229 tg = tgn, tgn = tg.getParent());
230 fileCloser = new Thread(tg, fileCloserRunnable);
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DScreenUpdateManager.java360 ThreadGroup tg =
362 for (ThreadGroup tgn = tg;
363 tgn != null; tg = tgn, tgn = tg.getParent());
364 Thread t = new Thread(tg, D3DScreenUpdateManager.this,
/openjdk7/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DThrowingTasks.java87 static final ThreadGroup tg = new ThreadGroup("Flaky"); field in class:ThrowingTasks
91 Thread t = new Thread(tg, r);
173 //System.out.println(tg.activeCount());
213 //System.out.printf("thread count = %d%n", tg.activeCount());
216 while (tg.activeCount() != tpe.getCorePoolSize() ||
217 tg.activeCount() != tpe.getCorePoolSize())
219 equal(tg.activeCount(), tpe.getCorePoolSize());
226 //while (tg.activeCount() > 0) Thread.sleep(10);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DThreadInfo.java127 static void setThreadGroup(ThreadGroupReference tg) { argument
128 group = tg;
H A DCommands.java361 private void printThreadGroup(ThreadGroupReference tg) { argument
362 ThreadIterator threadIter = new ThreadIterator(tg);
364 MessageOutput.println("Thread Group:", tg.name());
375 threadIter = new ThreadIterator(tg);
382 if (!thr.threadGroup().equals(tg)) {
383 tg = thr.threadGroup();
384 MessageOutput.println("Thread Group:", tg.name());
466 ThreadGroupReference tg = ThreadGroupIterator.find(name);
467 if (tg == null) {
470 printThreadGroup(tg);
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/threadpool/
H A DThreadPoolImpl.java116 public ThreadPoolImpl(ThreadGroup tg, String threadpoolName) { argument
120 threadGroup = tg;
471 WorkerThread(ThreadGroup tg, String threadPoolName) { argument
472 super(tg, "Idle");
/openjdk7/jdk/src/share/classes/sun/awt/
H A DAppContext.java332 for (ThreadGroup tg = currentThreadGroup; tg != threadGroup; tg = tg.getParent()) {
333 threadGroup2appContext.put(tg, context);
/openjdk7/jdk/src/windows/classes/sun/awt/shell/
H A DWin32ShellFolderManager2.java516 ThreadGroup tg = Thread.currentThread().getThreadGroup();
517 for (ThreadGroup tgn = tg;
519 tg = tgn, tgn = tg.getParent());
520 Thread thread = new Thread(tg, comRun, "Swing-Shell");
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DRealTimeSequencer.java905 final ThreadGroup tg = Thread.currentThread().getThreadGroup();
907 EventDispatcher eventDispatcher = dispatchers.get(tg);
910 dispatchers.put(tg, eventDispatcher);
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DMonitor.java1534 ThreadGroup tg = tf.getThreadGroup();
1535 if (tg == group) {
/openjdk7/jdk/src/share/classes/sun/font/
H A DSunFontManager.java2531 ThreadGroup tg =
2533 for (ThreadGroup tgn = tg;
2535 tg = tgn, tgn = tg.getParent());
2536 fileCloser = new Thread(tg, fileCloserRunnable);

Completed in 70 milliseconds

12