< prev index next >

src/share/vm/prims/jvm.h

Print this page
rev 11753 : [mq]: per_review


 286 
 287 JNIEXPORT jint JNICALL
 288 JVM_ClassLoaderDepth(JNIEnv *env);
 289 
 290 /*
 291  * java.lang.Package
 292  */
 293 JNIEXPORT jstring JNICALL
 294 JVM_GetSystemPackage(JNIEnv *env, jstring name);
 295 
 296 JNIEXPORT jobjectArray JNICALL
 297 JVM_GetSystemPackages(JNIEnv *env);
 298 
 299 /*
 300  * java.lang.ref.Reference
 301  */
 302 JNIEXPORT jobject JNICALL
 303 JVM_GetAndClearReferencePendingList(JNIEnv *env);
 304 
 305 JNIEXPORT jboolean JNICALL
 306 JVM_CheckReferencePendingList(JNIEnv *env, jboolean await);



 307 
 308 /*
 309  * java.io.ObjectInputStream
 310  */
 311 JNIEXPORT jobject JNICALL
 312 JVM_LatestUserDefinedLoader(JNIEnv *env);
 313 
 314 /*
 315  * java.lang.reflect.Array
 316  */
 317 JNIEXPORT jint JNICALL
 318 JVM_GetArrayLength(JNIEnv *env, jobject arr);
 319 
 320 JNIEXPORT jobject JNICALL
 321 JVM_GetArrayElement(JNIEnv *env, jobject arr, jint index);
 322 
 323 JNIEXPORT jvalue JNICALL
 324 JVM_GetPrimitiveArrayElement(JNIEnv *env, jobject arr, jint index, jint wCode);
 325 
 326 JNIEXPORT void JNICALL




 286 
 287 JNIEXPORT jint JNICALL
 288 JVM_ClassLoaderDepth(JNIEnv *env);
 289 
 290 /*
 291  * java.lang.Package
 292  */
 293 JNIEXPORT jstring JNICALL
 294 JVM_GetSystemPackage(JNIEnv *env, jstring name);
 295 
 296 JNIEXPORT jobjectArray JNICALL
 297 JVM_GetSystemPackages(JNIEnv *env);
 298 
 299 /*
 300  * java.lang.ref.Reference
 301  */
 302 JNIEXPORT jobject JNICALL
 303 JVM_GetAndClearReferencePendingList(JNIEnv *env);
 304 
 305 JNIEXPORT jboolean JNICALL
 306 JVM_HasReferencePendingList(JNIEnv *env);
 307 
 308 JNIEXPORT void JNICALL
 309 JVM_WaitForReferencePendingList(JNIEnv *env);
 310 
 311 /*
 312  * java.io.ObjectInputStream
 313  */
 314 JNIEXPORT jobject JNICALL
 315 JVM_LatestUserDefinedLoader(JNIEnv *env);
 316 
 317 /*
 318  * java.lang.reflect.Array
 319  */
 320 JNIEXPORT jint JNICALL
 321 JVM_GetArrayLength(JNIEnv *env, jobject arr);
 322 
 323 JNIEXPORT jobject JNICALL
 324 JVM_GetArrayElement(JNIEnv *env, jobject arr, jint index);
 325 
 326 JNIEXPORT jvalue JNICALL
 327 JVM_GetPrimitiveArrayElement(JNIEnv *env, jobject arr, jint index, jint wCode);
 328 
 329 JNIEXPORT void JNICALL


< prev index next >