Home
last modified time | relevance | path

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

/aosp12/art/tools/dmtracedump/
H A Dtracedump.cc148 int32_t numMethods; member
155 int32_t numMethods; member
190 int32_t numMethods; member
772 pKeys->numMethods = count; in parseMethods()
976 int32_t hi = pKeys->numMethods - 1; in lookupMethod()
1619 pClass->numMethods = prevNumMethods; in createClassList()
1698 int32_t numMethods = pClass->numMethods; in printClassProfiles() local
1772 int32_t numMethods = pClass->numMethods; in printClassProfiles() local
1907 int32_t numMethods = pUnique->numMethods; in printMethodProfiles() local
1982 int32_t numMethods = pUnique->numMethods; in printMethodProfiles() local
[all …]
/aosp12/frameworks/base/core/jni/
H A DLayoutlibLoader.cpp109 const char* className, const JNINativeMethod* gMethods, int numMethods) { in registerNativeMethods() argument
118 JNINativeMethod gTypefaceDelegateMethods[numMethods]; in registerNativeMethods()
119 for (int i = 0; i < numMethods; i++) { in registerNativeMethods()
126 int result = env->RegisterNatives(clazz, gTypefaceDelegateMethods, numMethods); in registerNativeMethods()
127 for (int i = 0; i < numMethods; i++) { in registerNativeMethods()
134 return env->RegisterNatives(clazz, gMethods, numMethods); in registerNativeMethods()
H A Dcore_jni_helpers.h87 const JNINativeMethod* gMethods, int numMethods) { in RegisterMethodsOrDie() argument
88 int res = AndroidRuntime::registerNativeMethods(env, className, gMethods, numMethods); in RegisterMethodsOrDie()
H A Dcom_android_internal_os_KernelCpuUidBpfMapReader.cpp164 int numMethods; member
187 ret = RegisterMethodsOrDie(env, fullName.c_str(), m.methods, m.numMethods); in register_com_android_internal_os_KernelCpuUidBpfMapReader()
H A DAndroidRuntime.cpp312 const char* className, const JNINativeMethod* gMethods, int numMethods) in registerNativeMethods() argument
314 return jniRegisterNativeMethods(env, className, gMethods, numMethods); in registerNativeMethods()
/aosp12/packages/inputmethods/LatinIME/native/jni/
H A Djni_common.cpp64 const int numMethods) { in registerNativeMethods() argument
70 if (env->RegisterNatives(clazz, methods, numMethods) != 0) { in registerNativeMethods()
H A Djni_common.h24 const int numMethods);
/aosp12/frameworks/base/core/tests/hosttests/test-apps/SharedUid/32/jni/
H A Dnative.cpp44 const JNINativeMethod* gMethods, int numMethods) in registerNativeMethods() argument
53 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) { in registerNativeMethods()
/aosp12/frameworks/base/core/tests/hosttests/test-apps/SharedUid/64/jni/
H A Dnative.cpp44 const JNINativeMethod* gMethods, int numMethods) in registerNativeMethods() argument
53 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) { in registerNativeMethods()
/aosp12/frameworks/base/core/tests/hosttests/test-apps/SharedUid/dual/jni/
H A Dnative.cpp44 const JNINativeMethod* gMethods, int numMethods) in registerNativeMethods() argument
53 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) { in registerNativeMethods()
/aosp12/frameworks/base/apct-tests/perftests/core/jni/
H A DSystemPerfTest.cpp59 const JNINativeMethod* gMethods, int numMethods) { in registerNativeMethods() argument
64 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) { in registerNativeMethods()
/aosp12/frameworks/base/libs/hwui/jni/
H A Dgraphics_jni_helpers.h84 const JNINativeMethod* gMethods, int numMethods) { in RegisterMethodsOrDie() argument
85 int res = jniRegisterNativeMethods(env, className, gMethods, numMethods); in RegisterMethodsOrDie()
/aosp12/art/benchmark/micro-native/
H A Dmicro_native.cc102 int numMethods) { in jniRegisterNativeMethods() argument
118 if (env->RegisterNatives(c, methods, numMethods) < 0) { in jniRegisterNativeMethods()
/aosp12/libnativehelper/
H A DJNIHelp.c320 const JNINativeMethod* methods, int numMethods) in jniRegisterNativeMethods() argument
322 ALOGV("Registering %s's %d native methods...", className, numMethods); in jniRegisterNativeMethods()
327 int result = (*env)->RegisterNatives(env, clazz, methods, numMethods); in jniRegisterNativeMethods()
/aosp12/libnativehelper/include/nativehelper/
H A DJNIHelp.h360 int numMethods) { in jniRegisterNativeMethods() argument
368 int result = env->RegisterNatives(clazz, methods, numMethods); in jniRegisterNativeMethods()
503 int numMethods);
/aosp12/frameworks/base/core/jni/include/android_runtime/
H A DAndroidRuntime.h52 const char* className, const JNINativeMethod* gMethods, int numMethods);
/aosp12/packages/apps/Gallery2/jni_jpegstream/src/
H A Djpegstream.cpp312 JNINativeMethod* gMethods, int numMethods) { in registerNativeMethods() argument
319 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) { in registerNativeMethods()
/aosp12/packages/apps/Messaging/jni/
H A DGifTranscoder.cpp562 JNINativeMethod* gMethods, int numMethods) { in registerNativeMethods() argument
567 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) { in registerNativeMethods()
/aosp12/art/test/004-JniTest/
H A Djni_test.cc795 const size_t numMethods = sizeof(sMainMethods)/sizeof(JNINativeMethod); in Java_Main_registerNativesJniTest() local
797 if (e->RegisterNatives(kls, sMainMethods, numMethods) < 0) { in Java_Main_registerNativesJniTest()