Home | History | Annotate | Download | only in jvmpi

Lines Matching full:jvmpi

3  * JVMPI agent implementation to report jitted JVM code to OProfile
36 #include <jvmpi.h>
81 JVMPI_Interface * jvmpi;
89 jvmpi->DisableGC();
91 jobjectID classID = jvmpi->GetMethodClass(method);
92 jvmpi->EnableGC();
230 jvmpi = jvmpi_GetEnv_arg.jvmpi_ifc;
231 jvmpi->EnableEvent(JVMPI_EVENT_COMPILED_METHOD_LOAD, NULL);
232 jvmpi->EnableEvent(JVMPI_EVENT_COMPILED_METHOD_UNLOAD, NULL);
233 jvmpi->EnableEvent(JVMPI_EVENT_JVM_SHUT_DOWN, NULL);
234 jvmpi->EnableEvent(JVMPI_EVENT_CLASS_LOAD, NULL);
236 jvmpi->NotifyEvent = jvm_notify_event;