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

/art/runtime/
H A Ddex_file_verifier.cc932 uint32_t method_count = item->methods_size_; local
933 if (!CheckListSize(method_item, method_count, sizeof(DexFile::MethodAnnotationsItem), "method_annotations list")) {
938 for (uint32_t i = 0; i < method_count; i++) {
1747 uint32_t method_count = item->methods_size_; local
1748 for (uint32_t i = 0; i < method_count; i++) {
H A Djni_internal.cc2340 jint method_count) {
2341 return RegisterNativeMethods(env, java_class, methods, method_count, true);
2345 jint method_count, bool return_errors) {
2346 if (UNLIKELY(method_count < 0)) {
2347 JniAbortF("RegisterNatives", "negative method count: %d", method_count);
2353 if (UNLIKELY(method_count == 0)) {
2359 for (jint i = 0; i < method_count; ++i) {
3291 jint method_count) {
3296 JNI::RegisterNativeMethods(env, c.get(), methods, method_count, false);
2339 RegisterNatives(JNIEnv* env, jclass java_class, const JNINativeMethod* methods, jint method_count) argument
2344 RegisterNativeMethods(JNIEnv* env, jclass java_class, const JNINativeMethod* methods, jint method_count, bool return_errors) argument
3290 RegisterNativeMethods(JNIEnv* env, const char* jni_class_name, const JNINativeMethod* methods, jint method_count) argument

Completed in 72 milliseconds