Lines Matching defs:xx

91     public void doOneThreadGroup(ThreadGroupReference xx) {
92 pp("threadGroup:" + xx.name());
94 pp("parent() = " + xx.parent());
97 doThreadList(xx.threads());
101 doThreadGroupList(xx.threadGroups());
121 public void doOneThread(ThreadReference xx) {
122 pp("Thread: " + xx.name());
124 pp("suspendCount() = " + xx.suspendCount());
128 pp("status() = " + xx.status());
129 pp("isSuspended() = " + xx.isSuspended());
130 pp("isAtBreakpoint() = " + xx.isAtBreakpoint());
132 pp("threadGroup() = " + xx.threadGroup());
137 List allFrames = xx.frames();
138 for (int ii = 0; ii < xx.frameCount(); ii++) {
139 StackFrame oneFrame = xx.frame(ii);
144 // unsupported List allMonitors = xx.ownedMonitors();
145 // unsupported pp("currentContendedMonitor() = " + xx.currentContendedMonitor());
189 public void doOneClass(ReferenceType xx) {
192 pp("toString() = " + xx.toString());
193 pp("virtualMachine() = " + xx.virtualMachine());
196 pp("name() = " + xx.name());
197 pp("signature() = " + xx.signature());
200 doReferenceTypeFields(xx);
206 String className = xx.getClass().getName();
223 if (referenceType.isInstance(xx)) {
225 ReferenceType rr = (ReferenceType)xx;
227 if (arrayType.isInstance(xx)) {
231 if (classType.isInstance(xx)) {
235 if (interfaceType.isInstance(xx)) {
244 public void doReferenceTypeFields(ReferenceType xx) {
246 pp("classLoader() = " + xx.classLoader());
247 try {zz =xx.sourceName();} catch(AbsentInformationException ee) { zz = ee;} pp("sourceName() = " + zz);
248 try {zz =xx.sourceNames("stratum");} catch(AbsentInformationException ee) { zz = ee;} pp("sourceNames() = " + zz);
249 try {zz =xx.sourcePaths("stratum");} catch(AbsentInformationException ee) { zz = ee;} pp("sourcePaths() = " + zz);
250 //try {zz =xx.sourceDebugExtension();} catch(AbsentInformationException ee) { zz = ee;} pp("sourceDebugExtension() = " + zz);
252 try {zz =xx.sourceDebugExtension();} catch(Exception ee) { zz = ee;} pp("sourceDebugExtension() = " + zz);
253 // If xx is an array, this can cause a ClassNotLoadedException on the
255 pp("isStatic() = " + xx.isStatic());
256 pp("isAbstract() = " + xx.isAbstract());
257 pp("isFinal() = " + xx.isFinal());
258 pp("isPrepared() = " + xx.isPrepared());
259 pp("isVerified() = " + xx.isVerified());
260 pp("isInitialized() = " + xx.isInitialized());
261 pp("failedToInitialize() = " + xx.failedToInitialize());
262 pp("fields() = " + xx.fields());
263 pp("visibleFields() = " + xx.visibleFields());
264 pp("allFields() = " + xx.allFields());
265 pp("fieldByName(String fieldName) = " + xx.fieldByName("fieldName"));
266 pp("methods() = " + xx.methods());
269 List meths = xx.methods();
276 pp(" visibleMethods() = " + xx.visibleMethods());
280 pp("allMethods() = " + xx.allMethods());
283 pp("methodsByName(String name) = " + xx.methodsByName("name"));
284 pp("methodsByName(String name, String signature) = " + xx.methodsByName("name", "signature"));
285 pp("nestedTypes() = " + xx.nestedTypes());
286 //pp("getValue(Field field) = " + xx.getValue("field"));
288 //pp("getValues(List fields) = " + xx.getValues(new List[] = {"fields"}));
290 pp("classObject() = " + xx.classObject());
291 //x pp("allLineLocations() = " + xx.allLineLocations());
292 //x pp("allLineLocations(String stratum, String sourceName) = " + xx.allLineLocations("stratum", "sourceName"));
293 //x pp("locationsOfLine(int lineNumber) = " + xx.locationsOfLine(89));
294 //x pp("locationsOfLine(String stratum, String sourceName, int lineNumber) = " + xx.locationsOfLine("stratum", "sourceName", 89));
295 pp("availableStrata() = " + xx.availableStrata());
296 pp("defaultStratum() = " + xx.defaultStratum());
297 pp("equals(Object obj) = " + xx.equals(xx));
298 pp("hashCode() = " + xx.hashCode());
304 // ReferenceType rr = (ReferenceType)xx;
308 // ArrayType ff = (ArrayType)xx;
315 // ClassType ff = (ClassType)xx;
322 // InterfaceType ff = (InterfaceType)xx;