Home
last modified time | relevance | path

Searched refs:nMethods (Results 1 – 5 of 5) sorted by relevance

/aosp12/system/chre/host/msm/daemon/generated/
H A Dchre_slpi_skel.c408 int nMethods; member
H A Dchre_slpi_stub.c408 int nMethods; member
/aosp12/system/extras/module_ndk_libs/libnativehelper/include_jni/
H A Djni.h975 jint nMethods) in RegisterNatives()
976 { return functions->RegisterNatives(this, clazz, methods, nMethods); } in RegisterNatives()
/aosp12/libnativehelper/include_jni/
H A Djni.h975 jint nMethods) in RegisterNatives()
976 { return functions->RegisterNatives(this, clazz, methods, nMethods); } in RegisterNatives()
/aosp12/art/runtime/jni/
H A Dcheck_jni.cc1828 …static jint RegisterNatives(JNIEnv* env, jclass c, const JNINativeMethod* methods, jint nMethods) { in RegisterNatives() argument
1832 JniValueType args[4] = {{.E = env }, {.c = c}, {.p = methods}, {.I = nMethods}}; in RegisterNatives()
1835 result.i = baseEnv(env)->RegisterNatives(env, c, methods, nMethods); in RegisterNatives()