Searched refs:threadGroup (Results 1 - 25 of 26) sorted by relevance

12

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/threadpool/
H A DThreadPoolManagerImpl.java53 private ThreadGroup threadGroup; field in class:ThreadPoolManagerImpl
59 threadGroup = getThreadGroup();
60 threadPool = new ThreadPoolImpl(threadGroup,
121 boolean isDestroyed = threadGroup.isDestroyed();
122 int numThreads = threadGroup.activeCount();
123 int numGroups = threadGroup.activeGroupCount();
126 wrapper.threadGroupIsDestroyed(threadGroup);
129 wrapper.threadGroupHasActiveThreadsInClose(threadGroup, numThreads);
132 wrapper.threadGroupHasSubGroupsInClose(threadGroup, numGroups);
134 threadGroup
[all...]
H A DThreadPoolImpl.java108 private ThreadGroup threadGroup; field in class:ThreadPoolImpl
120 threadGroup = tg;
171 threadGroup = null;
318 WorkerThread thread = new WorkerThread(threadGroup, name);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DAppContext.java178 private final ThreadGroup threadGroup; field in class:AppContext
228 * @param threadGroup The ThreadGroup for the new AppContext
232 AppContext(ThreadGroup threadGroup) { argument
235 this.threadGroup = threadGroup;
236 threadGroup2appContext.put(threadGroup, this);
305 ThreadGroup threadGroup = currentThreadGroup;
320 AppContext context = threadGroup2appContext.get(threadGroup);
322 threadGroup = threadGroup
[all...]
H A DSunToolkit.java285 ThreadGroup threadGroup = Thread.currentThread().getThreadGroup();
286 return createNewAppContext(threadGroup);
289 static final AppContext createNewAppContext(ThreadGroup threadGroup) { argument
293 AppContext appContext = new AppContext(threadGroup);
/openjdk7/jdk/test/sun/awt/AppContext/8012933/
H A DTest8012933.java37 final ThreadGroup threadGroup = new ThreadGroup("test thread group"); field in class:Test8012933
73 final Thread thread = new Thread(threadGroup, runnable, "creates app context");
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DThreadGroupReferenceImpl.java93 for (ThreadGroupReference threadGroup : threadGroups()) {
94 threadGroup.suspend();
103 for (ThreadGroupReference threadGroup : threadGroups()) {
104 threadGroup.resume();
H A DThreadReferenceImpl.java61 private ThreadGroupReference threadGroup; field in class:ThreadReferenceImpl
316 public ThreadGroupReference threadGroup() { method in class:ThreadReferenceImpl
320 if (threadGroup == null) {
322 threadGroup = JDWP.ThreadReference.ThreadGroup.
328 return threadGroup;
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageFetcher.java56 private ImageFetcher(ThreadGroup threadGroup, int index) { argument
57 super(threadGroup, "Image Fetcher " + index);
277 ThreadGroup threadGroup = appContext.getThreadGroup();
280 if (threadGroup.getParent() != null) {
281 // threadGroup is not the root, so we proceed
282 fetcherThreadGroup = threadGroup;
284 // threadGroup is the root ("system") ThreadGroup.
288 // threadGroup.getParent().getParent() == null.
289 threadGroup = Thread.currentThread().getThreadGroup();
290 ThreadGroup parent = threadGroup
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DThreadReference.java171 ThreadGroupReference threadGroup(); method in interface:ThreadReference
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/tasks/
H A DThreadService.java156 super(threadGroup, "ThreadService-"+counter++);
239 private ThreadGroup threadGroup = new ThreadGroup("ThreadService"); field in class:ThreadService
/openjdk7/jdk/test/java/awt/EventDispatchThread/LoopRobustness/
H A DLoopRobustness.java136 TestThreadGroup(ThreadGroup threadGroup, String name) { argument
137 super(threadGroup, name);
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLRenderQueue.java166 public QueueFlusher(ThreadGroup threadGroup) { argument
167 super(threadGroup, "Java2D Queue Flusher");
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletClassLoader.java642 private AppletThreadGroup threadGroup; field in class:AppletClassLoader
647 if (threadGroup == null || threadGroup.isDestroyed()) {
650 threadGroup = new AppletThreadGroup(base + "-threadGroup");
651 // threadGroup.setDaemon(true);
652 // threadGroup is now destroyed by AppContext.dispose()
657 AppContextCreator creatorThread = new AppContextCreator(threadGroup);
679 return threadGroup;
765 threadGroup
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DTimerQueue.java97 final ThreadGroup threadGroup =
102 Thread timerThread = new Thread(threadGroup, TimerQueue.this,
/openjdk7/hotspot/agent/test/jdi/
H A Dsagdoit.java92 pp("threadGroup:" + xx.name());
132 pp("threadGroup() = " + xx.threadGroup());
/openjdk7/jdk/src/share/back/
H A DThreadReferenceImpl.c152 threadGroup(PacketInputStream *in, PacketOutputStream *out) function
672 (void *)threadGroup,
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DThreadReferenceImpl.java172 public ThreadGroupReference threadGroup() { method in class:ThreadReferenceImpl
H A DVirtualMachineImpl.java507 ThreadGroupReference myGroup = myThread.threadGroup();
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DThreadTreeTool.java131 ThreadGroupReference group = thread.threadGroup();
/openjdk7/jdk/src/share/classes/java/awt/
H A DEventQueue.java155 private final ThreadGroup threadGroup = field in class:EventQueue
1035 if (dispatchThread == null && !threadGroup.isDestroyed() && !appContext.isDisposed()) {
1040 new EventDispatchThread(threadGroup,
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DMonitor.java1629 public DaemonThreadFactory(String poolName, ThreadGroup threadGroup) { argument
1630 group = threadGroup;
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DCommands.java378 if (thr.threadGroup() == null) {
382 if (!thr.threadGroup().equals(tg)) {
383 tg = thr.threadGroup();
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.hpp317 static oop threadGroup(oop java_thread);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.cpp1729 Handle group(this, java_lang_Thread::threadGroup(threadObj()));
1790 while (java_lang_Thread::threadGroup(threadObj()) != NULL && (count-- > 0)) {
2910 oop thread_group = java_lang_Thread::threadGroup(thread_obj);
2927 oop thread_group = java_lang_Thread::threadGroup(thread_obj);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnv.cpp971 thread_group = Handle(current_thread, java_lang_Thread::threadGroup(thread_obj()));

Completed in 660 milliseconds

12