summaryrefslogtreecommitdiff
path: root/libjava/jni.cc
Commit message (Expand)AuthorAgeFilesLines
* register2.java: New file.Tom Tromey2006-10-181-19/+34
* jvm.h (_Jv_GetJVMTIEnv): Declare.Keith Seitz2006-07-201-0/+8
* re PR libgcj/28178 (jniEnv->DeleteLocalRef (null) fails)Tom Tromey2006-06-271-0/+11
* Makefile.am (AM_CXXFLAGS): Define GCJ_VERSIONED_LIBDIR to "$(dbexecdir)".Thomas Fitzsimmons2006-06-201-73/+7
* re PR libgcj/25187 (dereferencing type-punned pointer warnings while building...Bryce McKinlay2006-02-091-3/+7
* jni.cc (_Jv_JNI_AttachCurrentThread): Return environment if it already exists.Tom Tromey2006-01-191-4/+8
* re PR java/18278 (JNI functions cannot return a weak reference)Tom Tromey2005-11-291-0/+13
* re PR libgcj/23739 (JNI: IsAssignableFrom reverses arguments)Tom Tromey2005-09-061-1/+1
* re PR libgcj/22036 (libjava/jni.cc compilation fix in cvs 2005-06-12)Jim Huang2005-06-131-12/+12
* re PR libgcj/21020 (java.lang.NoSuchFieldError regression from earlier 4.0.0 ...Andrew Haley2005-04-261-2/+2
* jni.cc (natrehash): Don't bother clearing memory again.Anthony Green2005-04-221-2/+0
* jni.cc (_Jv_JNI_GetAnyFieldID): Throw ClassNotFoundException.Tom Tromey2005-04-051-2/+3
* re PR libgcj/16923 (-D* Options passed to JNI_CreateJavaVM are ignored)Thomas Fitzsimmons2005-02-231-43/+10
* jni.cc (nathash_add): Don't strdup the method signature.Anthony Green2005-02-141-5/+21
* jni.h (_Jv_JNIEnv::bottom_locals): New field.Graydon Hoare2005-01-141-21/+82
* re PR libgcj/18115 (JNI nio buffer functions only work with byte buffers)Michael Koch2005-01-071-4/+11
* * Merged gcj-abi-2-dev-branch to trunk.Tom Tromey2004-11-251-3/+4
* 2004-11-24 Michael Koch <konqueror@gmx.de>Michael Koch2004-11-241-2/+3
* jni.cc (_Jv_JNI_NewObjectArray): Fixed return type.Tom Tromey2004-11-031-2/+2
* jni.cc (_Jv_JNIMethod::call): Use ffi_java_raw_call instead of ffi_raw_call i...Ulrich Weigand2004-10-141-0/+5
* * jni.cc (_Jv_JNI_RegisterNatives): Formatting fixlets.Tom Tromey2004-09-281-3/+2
* javaprims.h (_Jv_Utf8Const): Change struct to a class, with private fields an...Per Bothner2004-08-111-13/+15
* * jni.cc: Reindented.Tom Tromey2004-08-031-37/+37
* jni.cc (_Jv_JNI_NewGlobalRef, [...]): Remove needless parenthesis...Per Bothner2004-06-291-186/+186
* jni.cc (_Jv_JNI_GetAnyMethodID): Add name and signature to NoSuchMethodError.Mark Wielaard2004-06-111-2/+7
* class.c (make_class_data): Add new field aux_info.Bryce McKinlay2004-04-201-1/+1
* jvm.h (MAYBE_UNUSED): New macro tp mark probably unused arguments.Michael Koch2004-02-011-1/+1
* jni.cc (_Jv_JNI_GetStringUTFChars): Fail gracefully if string is null.Tom Tromey2003-11-181-2/+4
* jni.cc (_Jv_JNI_GetStringUTFChars): Pass length of string to JvGetStringUTFRe...Tom Tromey2003-11-141-1/+1
* jni.cc (JNI_CreateJavaVM): Remove JNIEXPORT.Danny Smith2003-11-121-3/+3
* Constructor.java (toString): Avoid extra whitespace on constructor with no mo...Bryce McKinlay2003-10-261-12/+4
* jni.cc (_Jv_LookupJNIMethod): Remove workaround that should hide a compiler w...Michael Koch2003-09-221-3/+1
* jni.cc: Replace "cheating" pointer-casting code with extract_from_jvalue<> te...Graydon Hoare2003-08-201-5/+15
* re PR libgcj/11951 (natMethod.cc (_Jv_CallAnyMethodA) should clear ffi_result...Tom Tromey2003-08-181-24/+12
* Runtime.java: Comment fix.Tom Tromey2003-07-211-2/+2
* 2003-06-17 Michael Koch <konqueror@gmx.de>Michael Koch2003-06-171-10/+16
* jni.cc (_Jv_JNI_check_types): New.Andrew Haley2003-06-121-38/+94
* jni.cc (_Jv_LookupJNIMethod): Modify to accept the size of the arguments for ...Ranjit Mathew2003-02-121-12/+75
* jni.cc (_Jv_JNI_NewObjectArray): Check that initializer can be cast to elemen...Tom Tromey2003-01-311-1/+6
* jni.cc: Added `name' argument.Tom Tromey2002-12-031-2/+3
* jni.h: Add missing JNICALL and JNIEXPORT attributes to function and function ...Ranjit Mathew2002-11-191-124/+133
* * jni.cc (_Jv_GetJNIEnvNewFrame): Set env->ex in all cases.Tom Tromey2002-11-101-2/+4
* jni.cc (array_from_valist): Assume that jlong won't be promoted.Tom Tromey2002-11-061-2/+8
* jni.cc (_Jv_JNI_AllocObject): Removed old FIXME comment.Tom Tromey2002-10-231-8/+8
* * jni.cc (_Jv_JNIFunctions): Fixed typo.Tom Tromey2002-05-101-1/+1
* Makefile.in: Rebuilt.Tom Tromey2002-04-101-16/+57
* jni.cc (_Jv_LookupJNIMethod): Throw UnsatisfiedLinkError, not AbstractMethodE...Tom Tromey2002-03-051-2/+2
* jni.cc (_Jv_JNI_AttachCurrentThread): env->locals assigned correctly.Martin Kahlert2002-02-131-2/+1
* jni.cc (_Jv_JNI_NewLocalRef): Make sure, that NULL frame is not dereferenced.Martin Kahlert2002-02-081-2/+11
* For PR libgcj/5103:Tom Tromey2001-12-161-4/+0