Searched refs:MethodInfo (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/management/
H A DHotspotCompilationMBean.java75 * @return a {@link MethodInfo} of the last compiled method.
77 public MethodInfo getLastCompile();
82 * @return a {@link MethodInfo} of the last failed compile.
84 public MethodInfo getFailedCompile();
89 * @return a {@link MethodInfo} of the last invalidated compile.
91 public MethodInfo getInvalidatedCompile();
H A DCompilerThreadStat.java34 private MethodInfo lastMethod;
36 CompilerThreadStat(String name, long taskCount, long time, MethodInfo lastMethod) {
77 * @return a {@link MethodInfo} object for the last method
80 public MethodInfo getLastCompiledMethodInfo() {
H A DMethodInfo.java32 public class MethodInfo implements java.io.Serializable { class in inherits:java.io.Serializable
37 MethodInfo(String name, long type, int compileSize) { method in class:MethodInfo
H A DHotspotCompilation.java103 MethodInfo minfo = new MethodInfo(method.stringValue(),
215 public MethodInfo getLastCompile() {
216 return new MethodInfo(lastMethod.stringValue(),
221 public MethodInfo getFailedCompile() {
222 return new MethodInfo(lastFailedMethod.stringValue(),
227 public MethodInfo getInvalidatedCompile() {
228 return new MethodInfo(lastInvalidatedMethod.stringValue(),
/openjdk7/jdk/src/share/demo/jvmti/mtrace/
H A Dmtrace.c97 typedef struct MethodInfo { struct
102 } MethodInfo; typedef in typeref:struct:MethodInfo
107 MethodInfo *methods; /* Method information */
198 MethodInfo *m1 = (MethodInfo*)e1;
199 MethodInfo *m2 = (MethodInfo*)e2;
222 cp->methods = (MethodInfo*)calloc(mcount, sizeof(MethodInfo));
228 MethodInfo *m
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DProxyGenerator.java373 /** MethodInfo struct for each method of generated class */
374 private List<MethodInfo> methods = new ArrayList<MethodInfo>();
441 * Step 2: Assemble FieldInfo and MethodInfo structs for all of
535 for (MethodInfo m : methods) {
754 * A MethodInfo object contains information about a particular method
758 private class MethodInfo { class in class:ProxyGenerator
769 public MethodInfo(String name, String descriptor, int accessFlags) { method in class:ProxyGenerator.MethodInfo
870 * Return a MethodInfo object for this method, including generating
873 private MethodInfo generateMetho
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_class.c71 typedef struct MethodInfo { struct
75 } MethodInfo; typedef in typeref:struct:MethodInfo
81 MethodInfo *method; /* Array of method data */
471 info->method = (MethodInfo *)HPROF_MALLOC(count*(int)sizeof(MethodInfo));
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DReferenceTypeImpl.java459 JDWP.ReferenceType.MethodsWithGeneric.MethodInfo[] declared;
468 JDWP.ReferenceType.MethodsWithGeneric.MethodInfo
487 JDWP.ReferenceType.Methods.MethodInfo[] declared;
496 JDWP.ReferenceType.Methods.MethodInfo mi = declared[i];
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DIDLNameTranslatorImpl_save.sjava379 MethodInfo clashMethodInfo =
380 (MethodInfo)allMethodInfo.get( clash ) ;

Completed in 45 milliseconds