Home
last modified time | relevance | path

Searched refs:tg (Results 1 – 1 of 1) sorted by relevance

/art/test/925-threadgroups/src/art/
DTest925.java79 private static void printThreadGroupInfo(ThreadGroup tg) { in printThreadGroupInfo() argument
80 Object[] threadGroupInfo = getThreadGroupInfo(tg); in printThreadGroupInfo()
86 System.out.println(tg); in printThreadGroupInfo()
93 private static void checkChildren(ThreadGroup tg) { in checkChildren() argument
94 Object[] data = getThreadGroupChildren(tg); in checkChildren()
113 System.out.println(tg.getName() + ":"); in checkChildren()
117 if (tg.getParent() != null) { in checkChildren()
118 checkChildren(tg.getParent()); in checkChildren()
122 private static void waitGroupChildren(ThreadGroup tg, int expectedChildCount, int timeoutS) in waitGroupChildren() argument
125 Object[] data = getThreadGroupChildren(tg); in waitGroupChildren()
[all …]