Lines Matching defs:group

173     /* The group of this thread */
174 private ThreadGroup group;
393 * @param g the Thread group
406 this.group = g;
462 * {@code (group, target, gname)} ,where {@code gname} is a newly generated
466 * @param group
467 * the thread group. If {@code null} and there is a security
468 * manager, the group is determined by {@linkplain
471 * SecurityManager.getThreadGroup()} returns {@code null}, the group
472 * is set to the current thread's thread group.
480 * thread group
482 public Thread(ThreadGroup group, Runnable target) {
483 init(group, target, "Thread-" + nextThreadNum(), 0);
501 * {@code (group, null, name)}.
503 * @param group
504 * the thread group. If {@code null} and there is a security
505 * manager, the group is determined by {@linkplain
508 * SecurityManager.getThreadGroup()} returns {@code null}, the group
509 * is set to the current thread's thread group.
516 * thread group
518 public Thread(ThreadGroup group, String name) {
519 init(group, null, name, 0);
525 Thread(ThreadGroup group, String name, int priority, boolean daemon) {
526 this.group = group;
527 this.group.addUnstarted();
572 * and belongs to the thread group referred to by {@code group}.
594 * @param group
595 * the thread group. If {@code null} and there is a security
596 * manager, the group is determined by {@linkplain
599 * SecurityManager.getThreadGroup()} returns {@code null}, the group
600 * is set to the current thread's thread group.
611 * thread group or cannot override the context class loader methods.
613 public Thread(ThreadGroup group, Runnable target, String name) {
614 init(group, target, name, 0);
620 * and belongs to the thread group referred to by {@code group}, and has
666 * @param group
667 * the thread group. If {@code null} and there is a security
668 * manager, the group is determined by {@linkplain
671 * SecurityManager.getThreadGroup()} returns {@code null}, the group
672 * is set to the current thread's thread group.
687 * thread group
691 public Thread(ThreadGroup group, Runnable target, String name,
693 init(group, target, name, stackSize);
717 * group threads created/set up by the VM. Any new functionality added
726 /* Notify the group that this thread is about to be started
727 * so that it can be added to the group's list of threads
728 * and the group's unstarted count can be decremented. */
729 group.add(this);
738 group.threadStartFailed(this);
773 if (group != null) {
774 group.threadTerminated(this);
775 group = null;
1065 * priority of the thread's thread group.
1150 * Returns the thread group to which this thread belongs.
1154 * @return this thread's thread group.
1161 return group;
1166 * thread's {@linkplain java.lang.ThreadGroup thread group} and its
1168 * thread's thread group.
1177 * thread's thread group and in any other thread group that
1178 * has the current thread's thread group as an ancestor
1186 * thread's thread group and its subgroups. This method simply
1188 * method of the current thread's thread group.
1194 * thread in the current thread's thread group and its subgroups, the
1208 * the current thread cannot access its thread group
1404 * thread's name, priority, and thread group.
1409 ThreadGroup group = getThreadGroup();
1410 if (group != null) {
1412 group.getName() + "]";
1840 * uncaught exception handler set, and the thread's thread group
1915 uncaughtExceptionHandler : group;