< prev index next >

src/hotspot/share/include/jvm.h

Print this page
rev 53271 : 8216981: Per thread IO statistics in JFR


1178 
1179 JNIEXPORT int
1180 jio_fprintf(FILE *, const char *fmt, ...);
1181 
1182 JNIEXPORT int
1183 jio_vfprintf(FILE *, const char *fmt, va_list args);
1184 
1185 
1186 JNIEXPORT void * JNICALL
1187 JVM_RawMonitorCreate(void);
1188 
1189 JNIEXPORT void JNICALL
1190 JVM_RawMonitorDestroy(void *mon);
1191 
1192 JNIEXPORT jint JNICALL
1193 JVM_RawMonitorEnter(void *mon);
1194 
1195 JNIEXPORT void JNICALL
1196 JVM_RawMonitorExit(void *mon);
1197 











1198 /*
1199  * java.lang.management support
1200  */
1201 JNIEXPORT void* JNICALL
1202 JVM_GetManagement(jint version);
1203 
1204 /*
1205  * com.sun.tools.attach.VirtualMachine support
1206  *
1207  * Initialize the agent properties with the properties maintained in the VM.
1208  */
1209 JNIEXPORT jobject JNICALL
1210 JVM_InitAgentProperties(JNIEnv *env, jobject agent_props);
1211 
1212 JNIEXPORT jstring JNICALL
1213 JVM_GetTemporaryDirectory(JNIEnv *env);
1214 
1215 /* Generics reflection support.
1216  *
1217  * Returns information about the given class's EnclosingMethod




1178 
1179 JNIEXPORT int
1180 jio_fprintf(FILE *, const char *fmt, ...);
1181 
1182 JNIEXPORT int
1183 jio_vfprintf(FILE *, const char *fmt, va_list args);
1184 
1185 
1186 JNIEXPORT void * JNICALL
1187 JVM_RawMonitorCreate(void);
1188 
1189 JNIEXPORT void JNICALL
1190 JVM_RawMonitorDestroy(void *mon);
1191 
1192 JNIEXPORT jint JNICALL
1193 JVM_RawMonitorEnter(void *mon);
1194 
1195 JNIEXPORT void JNICALL
1196 JVM_RawMonitorExit(void *mon);
1197 
1198 JNIEXPORT void JNICALL
1199 JVM_callFileReadBytes(JNIEnv* env, jint nr_of_read_bytes);
1200 
1201 JNIEXPORT void JNICALL
1202 JVM_callFileWriteBytes(JNIEnv* env, jint nr_of_written_bytes);
1203 
1204 JNIEXPORT void JNICALL
1205 JVM_callNetworkReadBytes(JNIEnv* env, jint nr_of_read_bytes);
1206 
1207 JNIEXPORT void JNICALL
1208 JVM_callNetworkWriteBytes(JNIEnv* env, jint nr_of_written_bytes);
1209 /*
1210  * java.lang.management support
1211  */
1212 JNIEXPORT void* JNICALL
1213 JVM_GetManagement(jint version);
1214 
1215 /*
1216  * com.sun.tools.attach.VirtualMachine support
1217  *
1218  * Initialize the agent properties with the properties maintained in the VM.
1219  */
1220 JNIEXPORT jobject JNICALL
1221 JVM_InitAgentProperties(JNIEnv *env, jobject agent_props);
1222 
1223 JNIEXPORT jstring JNICALL
1224 JVM_GetTemporaryDirectory(JNIEnv *env);
1225 
1226 /* Generics reflection support.
1227  *
1228  * Returns information about the given class's EnclosingMethod


< prev index next >