Home
last modified time | relevance | path

Searched refs:numMethods (Results 1 – 2 of 2) sorted by relevance

/libnativehelper/include/nativehelper/
DJNIHelp.h45 …tiveMethods(C_JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods);
122 …ativeMethods(JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods) { in jniRegisterNativeMethods() argument
123 return jniRegisterNativeMethods(&env->functions, className, gMethods, numMethods); in jniRegisterNativeMethods()
/libnativehelper/
DJNIHelp.cpp74 const JNINativeMethod* gMethods, int numMethods) in jniRegisterNativeMethods() argument
78 ALOGV("Registering %s's %d native methods...", className, numMethods); in jniRegisterNativeMethods()
87 if ((*env)->RegisterNatives(e, c.get(), gMethods, numMethods) < 0) { in jniRegisterNativeMethods()