HomeSort by relevance Sort by last modified time
    Searched defs:art_method (Results 1 - 7 of 7) sorted by null

  /art/test/595-profile-saving/
profile-saving.cc 19 #include "art_method-inl.h"
41 ArtMethod* art_method = exec->GetArtMethod(); local
42 if (!ProfilingInfo::Create(soa.Self(), art_method, /* retry_allocation */ true)) {
43 LOG(ERROR) << "Failed to create profiling info for method " << art_method->PrettyMethod();
59 ArtMethod* art_method = exec->GetArtMethod(); local
62 MethodReference(art_method->GetDexFile(),
63 art_method->GetDexMethodIndex()));
  /art/runtime/openjdkjvmti/
ti_breakpoint.cc 37 #include "art_method-inl.h"
85 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method)->GetCanonicalMethod(); local
87 art_method->GetCodeItem()->insns_size_in_code_units_) {
90 auto res_pair = env->breakpoints.insert(/* Breakpoint */ {art_method, location});
ti_method.cc 35 #include "art_method-inl.h"
101 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
103 if (art_method->IsNative()) {
112 const art::DexFile::CodeItem* code_item = art_method->GetCodeItem();
134 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
136 if (art_method->IsNative()) {
145 if (art_method->IsProxyMethod() || art_method->IsAbstract()) {
147 art::ArtMethod* base_method = art_method->GetInterfaceMethodIfProxy(art::kRuntimePointerSize);
156 DCHECK_NE(art_method->GetCodeItemOffset(), 0u)
168 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
197 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
264 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
281 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
313 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
347 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
401 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
    [all...]
  /art/compiler/optimizing/
intrinsics.cc 20 #include "art_method-inl.h"
121 ArtMethod* art_method = invoke->GetResolvedMethod(); local
123 return (art_method->IsFinal() || art_method->GetDeclaringClass()->IsFinal());
144 ArtMethod* art_method = invoke->GetResolvedMethod(); local
145 if (art_method != nullptr && art_method->IsIntrinsic()) {
146 Intrinsics intrinsic = static_cast<Intrinsics>(art_method->GetIntrinsic());
150 << art_method->PrettyMethod()
stack_map_test.cc 19 #include "art_method.h"
133 ArtMethod art_method; local
143 stream.BeginInlineInfoEntry(&art_method, 3, number_of_dex_registers_in_inline_info);
145 stream.BeginInlineInfoEntry(&art_method, 2, number_of_dex_registers_in_inline_info);
417 ArtMethod art_method; local
427 stream.BeginInlineInfoEntry(&art_method, 3, number_of_dex_registers_in_inline_info);
760 ArtMethod art_method; local
    [all...]
  /art/runtime/native/
java_lang_reflect_Executable.cc 22 #include "art_method-inl.h"
94 ArtMethod* art_method = executable.Get()->GetArtMethod(); local
95 if (art_method->GetDeclaringClass()->IsProxyClass()) {
103 if (!annotations::GetParametersMetadataForMethod(art_method, &names, &access_flags)) {
111 art_method->PrettyMethod().c_str()).c_str());
122 art_method->PrettyMethod().c_str(),
  /art/imgdiag/
imgdiag.cc 32 #include "art_method-inl.h"
207 template<> size_t EntrySize(ArtMethod* art_method) REQUIRES_SHARED(Locks::mutator_lock_) {
208 return sizeof(*art_method);
702 ArtMethod* art_method = reinterpret_cast<ArtMethod*>(&(*remote_contents)[0]); local
703 art_method->VisitMembers(member_info_);
795 auto art_method = reinterpret_cast<ArtMethod*>(method); local
798 FixUpRemotePointer(art_method->GetDeclaringClass(),
806 DumpOneArtMethod(art_method, declaring_class, remote_declaring_class);
    [all...]

Completed in 1834 milliseconds