| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| include/nativehelper/ | 03-May-2024 | - | 1,364 | 1,037 | ||
| Android.mk | D | 03-May-2024 | 1.8 KiB | 92 | 39 | |
| JNIHelp.c | D | 03-May-2024 | 2.2 KiB | 89 | 53 | |
| MODULE_LICENSE_APACHE2 | D | 03-May-2024 | 0 | |||
| NOTICE | D | 03-May-2024 | 10.4 KiB | 191 | 158 | |
| README | D | 03-May-2024 | 430 | 14 | 8 | |
| Register.c | D | 03-May-2024 | 4 KiB | 136 | 102 |
README
1Support functions for Android's class libraries 2 3 4These are VM-agnostic native functions that implement methods for system 5class libraries. All code here: 6 7 - MUST be associated with a standard java.* class (no Android-specific stuff) 8 - MUST use JNI 9 - SHOULD be written in C rather than C++ (it's usually smaller and all of 10 our VMs are written in C) 11 12Some helper functions are defined in ../include/nativehelper/JNIHelp.h. 13 14