Lines Matching refs:jc
295 dtj_java_class_create(JNIEnv *jenv, jclass *jc, char *name, in dtj_java_class_create() argument
302 c->djc_ptr = jc; in dtj_java_class_create()
442 jclass jc; in dtj_cache_jni_classes() local
487 jc = (*jenv)->FindClass(jenv, class->djc_name); in dtj_cache_jni_classes()
488 if (!jc) { in dtj_cache_jni_classes()
492 gjc = (*jenv)->NewGlobalRef(jenv, jc); in dtj_cache_jni_classes()
493 (*jenv)->DeleteLocalRef(jenv, jc); in dtj_cache_jni_classes()
689 jclass jc; in dtj_cache_jni_methods() local
696 jc = (*jenv)->FindClass(jenv, in dtj_cache_jni_methods()
698 (*jenv)->ThrowNew(jenv, jc, msg); in dtj_cache_jni_methods()
699 (*jenv)->DeleteLocalRef(jenv, jc); in dtj_cache_jni_methods()
724 jclass jc; in dtj_cache_jni_fields() local
731 jc = (*jenv)->FindClass(jenv, in dtj_cache_jni_fields()
733 (*jenv)->ThrowNew(jenv, jc, msg); in dtj_cache_jni_fields()
734 (*jenv)->DeleteLocalRef(jenv, jc); in dtj_cache_jni_fields()
747 dtj_throw(JNIEnv *jenv, jclass jc, const char *fmt, va_list *ap) in dtj_throw() argument
751 (*jenv)->ThrowNew(jenv, jc, msg); in dtj_throw()
758 jclass jc; in dtj_throw_out_of_memory() local
767 jc = (*jenv)->FindClass(jenv, in dtj_throw_out_of_memory()
770 dtj_throw(jenv, jc, fmt, &ap); in dtj_throw_out_of_memory()
771 (*jenv)->DeleteLocalRef(jenv, jc); in dtj_throw_out_of_memory()
779 jclass jc = (*jenv)->FindClass(jenv, in dtj_throw_null_pointer() local
782 dtj_throw(jenv, jc, fmt, &ap); in dtj_throw_null_pointer()
783 (*jenv)->DeleteLocalRef(jenv, jc); in dtj_throw_null_pointer()
791 jclass jc = (*jenv)->FindClass(jenv, in dtj_throw_illegal_state() local
794 dtj_throw(jenv, jc, fmt, &ap); in dtj_throw_illegal_state()
795 (*jenv)->DeleteLocalRef(jenv, jc); in dtj_throw_illegal_state()
803 jclass jc = (*jenv)->FindClass(jenv, in dtj_throw_illegal_argument() local
806 dtj_throw(jenv, jc, fmt, &ap); in dtj_throw_illegal_argument()
807 (*jenv)->DeleteLocalRef(jenv, jc); in dtj_throw_illegal_argument()
815 jclass jc = (*jenv)->FindClass(jenv, in dtj_throw_no_such_element() local
818 dtj_throw(jenv, jc, fmt, &ap); in dtj_throw_no_such_element()
819 (*jenv)->DeleteLocalRef(jenv, jc); in dtj_throw_no_such_element()
827 jclass jc = (*jenv)->FindClass(jenv, in dtj_throw_class_cast() local
830 dtj_throw(jenv, jc, fmt, &ap); in dtj_throw_class_cast()
831 (*jenv)->DeleteLocalRef(jenv, jc); in dtj_throw_class_cast()
839 jclass jc = (*jenv)->FindClass(jenv, in dtj_throw_assertion() local
842 dtj_throw(jenv, jc, fmt, &ap); in dtj_throw_assertion()
843 (*jenv)->DeleteLocalRef(jenv, jc); in dtj_throw_assertion()
851 jclass jc = (*jenv)->FindClass(jenv, in dtj_throw_resource_limit() local
854 dtj_throw(jenv, jc, fmt, &ap); in dtj_throw_resource_limit()
855 (*jenv)->DeleteLocalRef(jenv, jc); in dtj_throw_resource_limit()