Home
last modified time | relevance | path

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

/art/test/661-oat-writer-layout/
Dparse_oatdump_offsets.sh25 found_method=""
30 found_method=$line
34 echo $line $found_method >> "$tmp_file"
/art/dex2oat/
Dverifier_deps_test.cc147 bool found_method = false; in VerifyMethod() local
176 found_method = true; in VerifyMethod()
179 CHECK(found_method) << "Expected to find method " << method_name; in VerifyMethod()
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h636 ArtMethod* found_method = referenced_class->FindVirtualMethodForInterfaceSuper( in FindSuperMethodToCall() local
638 DCHECK(found_method != nullptr); in FindSuperMethodToCall()
639 return found_method; in FindSuperMethodToCall()
/art/runtime/jit/
Djit_code_cache.cc1309 ArtMethod* found_method = nullptr; // Only for DCHECK(), not for JNI stubs. in LookupMethodHeader() local
1343 found_method = it->second; in LookupMethodHeader()
1363 DCHECK_EQ(found_method, method) in LookupMethodHeader()
1365 << ArtMethod::PrettyMethod(found_method) << " " in LookupMethodHeader()
/art/runtime/
Dclass_linker.cc8590 ArtMethod* found_method = klass->GetVirtualMethodDuringLinking(*it1, kPointerSize); in AssignVTableIndexes() local
8592 if (found_method->IsPublic()) { in AssignVTableIndexes()
8593 vtable_method = found_method; in AssignVTableIndexes()