Home
last modified time | relevance | path

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

/libnativehelper/include/nativehelper/
DJNIHelp.h44 int numMethods);
194 …ativeMethods(JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods) { in jniRegisterNativeMethods() argument
195 return jniRegisterNativeMethods(&env->functions, className, gMethods, numMethods); in jniRegisterNativeMethods()
/libnativehelper/
DJNIHelp.cpp67 const JNINativeMethod* gMethods, int numMethods) in jniRegisterNativeMethods() argument
71 ALOGV("Registering %s's %d native methods...", className, numMethods); in jniRegisterNativeMethods()
78 int result = e->RegisterNatives(c.get(), gMethods, numMethods); in jniRegisterNativeMethods()