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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaThread.java36 public JSJavaThread(Instance threadOop, JSJavaFactory fac) { argument
37 super(threadOop, fac);
41 this.jthread = OopUtilities.threadOopGetJavaThread(threadOop);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DOopUtilities.java251 public static Oop threadOopGetThreadGroup(Oop threadOop) { argument
253 return threadGroupField.getValue(threadOop);
256 public static String threadOopGetName(Oop threadOop) { argument
258 return charArrayToString((TypeArray) threadNameField.getValue(threadOop));
262 public static JavaThread threadOopGetJavaThread(Oop threadOop) { argument
264 Address addr = threadOop.getHandle().getAddressAt(threadEETopField.getOffset());
272 public static int threadOopGetThreadStatus(Oop threadOop) { argument
276 return (int) threadStatusField.getValue(threadOop);
280 JavaThread thr = threadOopGetJavaThread(threadOop);
291 public static Oop threadOopGetParkBlocker(Oop threadOop) { argument
[all...]

Completed in 30 milliseconds