summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* Fix commit eb842815498f5926828b49c48fffce22fc9586a2: Adding missing filesSven Gothel2013-06-222-0/+179
* ProcAddressTable: Fix regressions: getField(..) -> getDeclaredField(..), incl...Sven Gothel2013-06-211-13/+38
* ProcAddressTable: If using a SecurityManager 'checkAllLinkPermission()' inste...Sven Gothel2013-06-211-6/+19
* Security: Tighten DynamicLinker*, NativeLibrary and DynamicLibraryBundle acce...Sven Gothel2013-06-2110-111/+198
* Fix regression of f69831574d4927d03d40c330d0b047d8c89622a4: Use getDeclaredFi...Sven Gothel2013-06-211-3/+5
* ProcAddressTable: Make all handles package private, use local PROCADDRESS_VAR...Sven Gothel2013-06-203-38/+85
* DynamicLookupHelper: Add secure isFunctionAvailable(..); NativeLibrary: Add T...Sven Gothel2013-06-203-11/+65
* DynamicLinker*: Proper Override notationSven Gothel2013-06-204-3/+15
* Security: Gluegen generated native methods w/ 'pass through function pointer'...Sven Gothel2013-06-201-15/+37
* Security: Tighten DynamicLinker*, NativeLibrary and DynamicLibraryBundle access.Sven Gothel2013-06-206-136/+207
* Fix URLCompositionTest for Bug 757 (3): If file, replace '/' in expected resu...Sven Gothel2013-06-191-2/+4
* Fix URLCompositionTest for Bug 757 (2): If file, replace '/' in expected resu...Sven Gothel2013-06-191-1/+11
* Fix URLCompositionTest for Bug 757: If file, replace '/' in expected result w...Sven Gothel2013-06-191-10/+12
* Fix Bug 757: Regression of URL to URI conversion (Encoded path not compatible...Sven Gothel2013-06-198-73/+207
* Refine 4feb65517ae4a4e2b9b04cdfc4b85582cb8b9784: Handle verbose error cases p...Sven Gothel2013-06-181-26/+31
* Robostness: Catch Throwables on NativeLibrary.open(..) and be verbose in DEBU...Sven Gothel2013-06-184-7/+29
* Fix DynamicLinker Impl: Add Bionic specialization using Bionic's non POSIX va...Sven Gothel2013-06-166-150/+90
* Fix CStruct APT File Location - Threw FileNotFoundException w/ Java7Sven Gothel2013-06-151-32/+38
* GlueGen (Compile Time): Add 'CStruct' Annotation Processor (APT) to 'gluegen'...Sven Gothel2013-06-147-7/+392
* Fix Bug 749: Add Support for Solaris SPARC 32bitBritta Eckhardt2013-06-132-19/+30
* Bug 752: Review Code Vulnerabilities (Permission Checks of new exposed code a...Sven Gothel2013-06-1114-224/+726
* Fix Bug 683 part1b: Add IOUtil.getRelativeOf(URL, ..), wrapper for URI for co...Sven Gothel2013-06-091-0/+12
* Bug 747: AndroidVersion: HashMap -> IntObjectHashMapSven Gothel2013-06-091-7/+6
* Fix Bug 683 part1: IOUtil, JarUtil, TempJarCache, .. uses URI instead of URL ...Sven Gothel2013-06-0912-397/+530
* Enhance VersionNumber*: Use only RegExp and cache default (no wrapped whitesp...Sven Gothel2013-05-314-39/+399
* RecursiveThreadGroupLockImpl01Unfairish: Fix DEBUG outputSven Gothel2013-05-051-3/+4
* Buffers: getRemainingBytes(Object) -> remainingBytes(Object); sizeOfBufferEle...Sven Gothel2013-04-291-60/+60
* Buffers: Add 'sizeOfBufferType(Class<?> bufferType)'Sven Gothel2013-04-271-1/+24
* Buffers: Expose 'getRemainingBytes(Object buffer)'Sven Gothel2013-04-272-6/+31
* VersionNumber*: Add static final 'zeroVersion' for convenience and identity.Sven Gothel2013-04-262-1/+8
* VersionNumber: Add API doc, use final int values, remove protected 'nop' ctor...Sven Gothel2013-04-162-21/+94
* Fix Bug 715: Don't modify 'carray' pointer returned from GetPrimitiveArrayCri...Sven Gothel2013-04-131-5/+15
* Bug 715: Adding unit test w/ 'intArrayCopy(int *dest, int *src, int num)' to ...Sven Gothel2013-04-133-0/+62
* IntBitfield: Add bit-count, O(1) per int-element, using HAKEM.Sven Gothel2013-04-111-0/+26
* Merge remote-tracking branch 'hharrison/master'Sven Gothel2013-04-1119-0/+0
|\
| * gluegen: remove executable bit from java and c source filesHarvey Harrison2013-04-0919-0/+0
* | IntBitfield: Add optimization path w/ int bitCount bitfield range. Replace '*...Sven Gothel2013-04-112-12/+61
|/
* gluegen: use enhanced for-loops in ArrayHashSetHarvey Harrison2013-04-031-10/+9
* gluegen: use explicit ArrayList constructor to avoid @SuppressWarnings and cl...Harvey Harrison2013-04-031-4/+2
* ArrayHashSet: Add ctor w/ initialCapacity and (initialCapacity, loadFactor)Sven Gothel2013-04-011-4/+24
* VersionUtil: add getManifest(.., String[] extensions) variant, allowing detec...Sven Gothel2013-03-281-5/+30
* Revert version.timestamp to yyyyMMdd only, i.e. w/o HHmmSven Gothel2013-03-281-2/+2
* Bug 588: Adding jogamp.version property, i.e. 2.0.2-rc-<TIMESTAMP> used for M...Sven Gothel2013-03-281-0/+25
* Fix unit test of commit 1610dbb4e4d1a1ecf31eb837a47e0f5be04afdac: Add native ...Sven Gothel2013-03-201-2/+2
* Fix intptr_t*, uintptr_t*, ptrdiff_t* and size_t* mapping, map them to Pointe...Sven Gothel2013-03-206-27/+268
* Fix RecursiveLockImpl* corner case: Timeout reached but lock released -> Assu...Sven Gothel2013-03-182-16/+20
* Function- RunnableTask: Clear runnableException @ start for re-entry; Fix tEx...Sven Gothel2013-03-183-11/+39
* Function- RunnableTask: Add PrintStream 'exceptionOut' argument allowing non ...Sven Gothel2013-03-185-20/+46
* Fix Long*HashMap impl. of IntIntHashMap: Better 64bit hash value, using new H...Sven Gothel2013-03-122-12/+79
* Unit Tests: OSX/Java7 w/o 32bit tests ; Reliable Test1p*JavaEmitter JNI bindi...Sven Gothel2013-02-282-9/+10