• Home
Name Date Size #Lines LOC

..--

include/nativehelper/03-May-2024-1,3641,037

Android.mkD03-May-20241.8 KiB9239

JNIHelp.cD03-May-20242.2 KiB8953

MODULE_LICENSE_APACHE2D03-May-20240

NOTICED03-May-202410.4 KiB191158

READMED03-May-2024430 148

Register.cD03-May-20244 KiB136102

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