aboutsummaryrefslogtreecommitdiff
path: root/vm/Jni.cpp
Commit message (Expand)AuthorAgeFilesLines
* dalvik: Fix leak in error condition in FindClassIvan Evlogiev2014-01-281-0/+1
* Support apps that pass JNI_VERSION_1_1 to GetEnv.Elliott Hughes2013-09-061-1/+3
* Check JNI versions handed to JNI and JII functions.Elliott Hughes2013-08-021-2/+16
* Throw NoSuchMethodError if RegisterNatives fails.Elliott Hughes2013-08-011-0/+7
* Disable -Xjnigreflimit.Elliott Hughes2013-07-021-48/+10
* Fix minor leaks caused by failed initialization in JNI_CreateJavaVMYou Kim2013-04-041-0/+3
* Fix a cast in JniEnv::NewDirectByteBuffer.Elliott Hughes2013-03-291-1/+1
* Track 64-bit nio changes.Elliott Hughes2013-03-291-1/+1
* Track libcore DirectByteBuffer cleanup.Elliott Hughes2013-03-271-3/+3
* Check JavaVMAttachArgs::version in CheckJNI.Elliott Hughes2013-03-131-2/+0
* Fix a forecopy/forcecopy typo.Elliott Hughes2012-12-211-1/+1
* Add JNI statistics to the SIGQUIT output.Elliott Hughes2012-12-211-0/+26
* Change NewDirectByteBuffer to allow NULL if capacity == 0.Elliott Hughes2012-12-191-18/+28
* Fix ALOGV bit rot.Elliott Hughes2012-08-061-1/+1
* Throw ArrayStoreException instead of corrupting the heap.Elliott Hughes2012-04-051-1/+10
* Replace malloc() followed by memset() to zero with calloc()Iliyan Malchev2012-02-161-2/+1
* Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) DO NOT MERGESteve Block2012-01-081-19/+19
* Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF) DO NOT MERGESteve Block2012-01-061-14/+14
* Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF) DO NOT MERGESteve Block2012-01-051-18/+18
* Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGESteve Block2012-01-031-12/+12
* am 50e01501: Merge "Knock ::self() out of the ParseXml profile." into ics-mr1Elliott Hughes2011-11-051-225/+160
|\
| * Knock ::self() out of the ParseXml profile.Elliott Hughes2011-11-031-225/+160
| * DO NOT MERGE: Optimize IndirectRefTable.Jeff Brown2011-10-311-1/+3
* | Optimize IndirectRefTable.Jeff Brown2011-10-271-1/+3
* | Rename (IF_)LOGV(_IF) to (IF_)ALOGV(_IF) DO NOT MERGESteve Block2011-10-261-8/+8
|/
* Don't use dvmIsValidObject outside the GC.Elliott Hughes2011-07-191-3/+1
* Fix the jweak implementation.Elliott Hughes2011-07-111-15/+5
* Add JNI app bug workarounds.Elliott Hughes2011-07-101-5/+16
* Remove dead code/unused variables to avoid gcc-4.6 warnings.Doug Kwan2011-07-071-2/+0
* Improve a comment.Elliott Hughes2011-07-071-1/+2
* Don't abort when a weak global's referent is cleared.Elliott Hughes2011-07-061-10/+20
* Fix native method logging to show local references rather than direct pointers.Elliott Hughes2011-06-301-186/+167
* Add two new JNI debugging options.Elliott Hughes2011-06-301-16/+45
* Improve -verbose:jni.Elliott Hughes2011-06-281-3/+16
* Throw NullPointerExceptions with detail messages.Elliott Hughes2011-06-231-1/+1
* resolved conflicts for merge of cc8c750a to masterElliott Hughes2011-06-231-1/+3
* Fix native methods that weren't registered via RegisterNatives.Elliott Hughes2011-06-231-7/+7
* Clean up IndirectRefTable a bit.Elliott Hughes2011-06-211-48/+36
* Make some of the StringObject functions member functions.Elliott Hughes2011-06-171-18/+24
* Better comments for yesterday's change.Elliott Hughes2011-06-151-1/+6
* Allow native methods to declare they don't need a JNIEnv*.Elliott Hughes2011-06-141-9/+35
* Fix an issue regarding FindClass and threads without native methods.Carl Shapiro2011-06-091-1/+2
* Establish a subclass relationships among the field types.Carl Shapiro2011-05-061-4/+4
* Establish a subclass relationship between ArrayObject and Object.Carl Shapiro2011-05-031-2/+2
* Type the reference member of JValue as an Object pointer.Carl Shapiro2011-04-291-9/+9
* Remove the old forcecopy in favor of the new.Elliott Hughes2011-04-271-33/+33
* Add -Xjniopts:forcecopy-unmap to catch more errors than forcecopy.Elliott Hughes2011-04-261-69/+47
* Consolidate curFrame fields in thread storagebuzbee2011-04-221-6/+7
* Remove dvmAllocObjectArray and all of its uses.Carl Shapiro2011-04-181-5/+5
* Start actually using C++ in the JNI implementation.Elliott Hughes2011-04-151-373/+228