Searched refs:tg (Results 1 – 1 of 1) sorted by relevance
79 private static void printThreadGroupInfo(ThreadGroup tg) { in printThreadGroupInfo() argument80 Object[] threadGroupInfo = getThreadGroupInfo(tg); in printThreadGroupInfo()86 System.out.println(tg); in printThreadGroupInfo()108 private static void checkChildren(ThreadGroup tg) { in checkChildren() argument109 Object[] data = getThreadGroupChildren(tg); in checkChildren()118 System.out.println(tg.getName() + ":"); in checkChildren()122 if (tg.getParent() != null) { in checkChildren()123 checkChildren(tg.getParent()); in checkChildren()127 private static void waitGroupChildren(ThreadGroup tg, int expectedChildCount, int timeoutS) in waitGroupChildren() argument130 Object[] data = getThreadGroupChildren(tg); in waitGroupChildren()[all …]