OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:jniRegisterNativeMethods
(Results
1 - 2
of
2
) sorted by null
/dalvik/libnativehelper/include/nativehelper/
JNIHelp.h
42
int
jniRegisterNativeMethods
(C_JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods);
114
inline int
jniRegisterNativeMethods
(JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods) {
115
return
jniRegisterNativeMethods
(&env->functions, className, gMethods, numMethods);
/dalvik/libnativehelper/
JNIHelp.cpp
66
extern "C" int
jniRegisterNativeMethods
(C_JNIEnv* env, const char* className,
Completed in 624 milliseconds