< prev index next >

src/java.base/share/native/include/jvm.h

Print this page




 231 
 232 JNIEXPORT jint JNICALL
 233 JVM_CountStackFrames(JNIEnv *env, jobject thread);
 234 
 235 JNIEXPORT void JNICALL
 236 JVM_Interrupt(JNIEnv *env, jobject thread);
 237 
 238 JNIEXPORT jboolean JNICALL
 239 JVM_IsInterrupted(JNIEnv *env, jobject thread, jboolean clearInterrupted);
 240 
 241 JNIEXPORT jboolean JNICALL
 242 JVM_HoldsLock(JNIEnv *env, jclass threadClass, jobject obj);
 243 
 244 JNIEXPORT void JNICALL
 245 JVM_DumpAllStacks(JNIEnv *env, jclass unused);
 246 
 247 JNIEXPORT jobjectArray JNICALL
 248 JVM_GetAllThreads(JNIEnv *env, jclass dummy);
 249 
 250 JNIEXPORT void JNICALL
 251 JVM_SetNativeThreadName(JNIEnv *env, jobject jthread, jstring name);
 252 
 253 /* getStackTrace() and getAllStackTraces() method */
 254 JNIEXPORT jobjectArray JNICALL
 255 JVM_DumpThreads(JNIEnv *env, jclass threadClass, jobjectArray threads);
 256 
 257 /*
 258  * java.lang.SecurityManager
 259  */
 260 JNIEXPORT jclass JNICALL
 261 JVM_CurrentLoadedClass(JNIEnv *env);
 262 
 263 JNIEXPORT jobject JNICALL
 264 JVM_CurrentClassLoader(JNIEnv *env);
 265 
 266 JNIEXPORT jobjectArray JNICALL
 267 JVM_GetClassContext(JNIEnv *env);
 268 
 269 JNIEXPORT jint JNICALL
 270 JVM_ClassDepth(JNIEnv *env, jstring name);
 271 




 231 
 232 JNIEXPORT jint JNICALL
 233 JVM_CountStackFrames(JNIEnv *env, jobject thread);
 234 
 235 JNIEXPORT void JNICALL
 236 JVM_Interrupt(JNIEnv *env, jobject thread);
 237 
 238 JNIEXPORT jboolean JNICALL
 239 JVM_IsInterrupted(JNIEnv *env, jobject thread, jboolean clearInterrupted);
 240 
 241 JNIEXPORT jboolean JNICALL
 242 JVM_HoldsLock(JNIEnv *env, jclass threadClass, jobject obj);
 243 
 244 JNIEXPORT void JNICALL
 245 JVM_DumpAllStacks(JNIEnv *env, jclass unused);
 246 
 247 JNIEXPORT jobjectArray JNICALL
 248 JVM_GetAllThreads(JNIEnv *env, jclass dummy);
 249 
 250 JNIEXPORT void JNICALL
 251 JVM_SetNativeThreadName(JNIEnv *env, jobject jthread, jstring name, jboolean allowAttachedThread);
 252 
 253 /* getStackTrace() and getAllStackTraces() method */
 254 JNIEXPORT jobjectArray JNICALL
 255 JVM_DumpThreads(JNIEnv *env, jclass threadClass, jobjectArray threads);
 256 
 257 /*
 258  * java.lang.SecurityManager
 259  */
 260 JNIEXPORT jclass JNICALL
 261 JVM_CurrentLoadedClass(JNIEnv *env);
 262 
 263 JNIEXPORT jobject JNICALL
 264 JVM_CurrentClassLoader(JNIEnv *env);
 265 
 266 JNIEXPORT jobjectArray JNICALL
 267 JVM_GetClassContext(JNIEnv *env);
 268 
 269 JNIEXPORT jint JNICALL
 270 JVM_ClassDepth(JNIEnv *env, jstring name);
 271 


< prev index next >