Searched defs:method_count (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Dnative_bridge_art_interface.cc60 uint32_t method_count) {
71 if (count < method_count) {
84 if (count < method_count) {
59 GetNativeMethods(JNIEnv* env, jclass clazz, JNINativeMethod* methods, uint32_t method_count) argument
H A Ddex_file_verifier.cc1056 uint32_t method_count = item->methods_size_; local
1057 if (!CheckListSize(method_item, method_count, sizeof(DexFile::MethodAnnotationsItem), "method_annotations list")) {
1062 for (uint32_t i = 0; i < method_count; i++) {
1906 uint32_t method_count = item->methods_size_; local
1907 for (uint32_t i = 0; i < method_count; i++) {
H A Djni_internal.cc2366 jint method_count) {
2367 return RegisterNativeMethods(env, java_class, methods, method_count, true);
2371 jint method_count, bool return_errors) {
2372 if (UNLIKELY(method_count < 0)) {
2373 JniAbortF("RegisterNatives", "negative method count: %d", method_count);
2379 if (UNLIKELY(method_count == 0)) {
2385 for (jint i = 0; i < method_count; ++i) {
3428 jint method_count) {
3433 JNI::RegisterNativeMethods(env, c.get(), methods, method_count, false);
2365 RegisterNatives(JNIEnv* env, jclass java_class, const JNINativeMethod* methods, jint method_count) argument
2370 RegisterNativeMethods(JNIEnv* env, jclass java_class, const JNINativeMethod* methods, jint method_count, bool return_errors) argument
3427 RegisterNativeMethods(JNIEnv* env, const char* jni_class_name, const JNINativeMethod* methods, jint method_count) argument

Completed in 178 milliseconds