hotspot/src/share/vm/prims/jvm.h
changeset 28168 b9139c952329
parent 27667 3c814b51da6c
child 28737 ca4b6a6e5cc8
equal deleted inserted replaced
28163:322d55d167be 28168:b9139c952329
   331  * Find primitive classes
   331  * Find primitive classes
   332  * utf: class name
   332  * utf: class name
   333  */
   333  */
   334 JNIEXPORT jclass JNICALL
   334 JNIEXPORT jclass JNICALL
   335 JVM_FindPrimitiveClass(JNIEnv *env, const char *utf);
   335 JVM_FindPrimitiveClass(JNIEnv *env, const char *utf);
   336 
       
   337 /*
       
   338  * Find a class from a given class loader. Throw ClassNotFoundException
       
   339  * or NoClassDefFoundError depending on the value of the last
       
   340  * argument.
       
   341  */
       
   342 JNIEXPORT jclass JNICALL
       
   343 JVM_FindClassFromClassLoader(JNIEnv *env, const char *name, jboolean init,
       
   344                              jobject loader, jboolean throwError);
       
   345 
   336 
   346 /*
   337 /*
   347  * Find a class from a boot class loader. Returns NULL if class not found.
   338  * Find a class from a boot class loader. Returns NULL if class not found.
   348  */
   339  */
   349 JNIEXPORT jclass JNICALL
   340 JNIEXPORT jclass JNICALL