Searched defs:threadGroupOop (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DOopUtilities.java184 public static Oop threadGroupOopGetParent(Oop threadGroupOop) { argument
186 return threadGroupParentField.getValue(threadGroupOop);
189 public static String threadGroupOopGetName(Oop threadGroupOop) { argument
191 return stringOopToString(threadGroupNameField.getValue(threadGroupOop));
194 public static Oop[] threadGroupOopGetThreads(Oop threadGroupOop) { argument
196 int nthreads = threadGroupNThreadsField.getValue(threadGroupOop);
198 ObjArray threads = (ObjArray) threadGroupThreadsField.getValue(threadGroupOop);
205 public static Oop[] threadGroupOopGetGroups(Oop threadGroupOop) { argument
207 int ngroups = threadGroupNGroupsField.getValue(threadGroupOop);
209 ObjArray groups = (ObjArray) threadGroupGroupsField.getValue(threadGroupOop);
[all...]

Completed in 28 milliseconds