Home
last modified time | relevance | path

Searched refs:method_name (Results 1 – 16 of 16) sorted by relevance

/art/runtime/mirror/
Dstack_trace_element.cc43 Handle<String> method_name, Handle<String> file_name, in Alloc() argument
49 trace->Init<true>(declaring_class, method_name, file_name, line_number); in Alloc()
51 trace->Init<false>(declaring_class, method_name, file_name, line_number); in Alloc()
58 void StackTraceElement::Init(Handle<String> declaring_class, Handle<String> method_name, in Init() argument
63 method_name.Get()); in Init()
Dstack_trace_element.h51 Handle<String> method_name, Handle<String> file_name,
72 void Init(Handle<String> declaring_class, Handle<String> method_name, Handle<String> file_name,
/art/compiler/
Dcommon_compiler_test.h67 const char* method_name, const char* signature)
71 const char* method_name, const char* signature)
Dcommon_compiler_test.cc373 const char* class_name, const char* method_name, in CompileDirectMethod() argument
379 mirror::ArtMethod* method = klass->FindDirectMethod(method_name, signature); in CompileDirectMethod()
381 << class_name << "." << method_name << signature; in CompileDirectMethod()
386 const char* method_name, const char* signature) in CompileVirtualMethod() argument
392 mirror::ArtMethod* method = klass->FindVirtualMethod(method_name, signature); in CompileVirtualMethod()
394 << class_name << "." << method_name << signature; in CompileVirtualMethod()
Doat_writer.h100 DebugInfo(const std::string& method_name, uint32_t low_pc, uint32_t high_pc) in DebugInfo()
101 : method_name_(method_name), low_pc_(low_pc), high_pc_(high_pc) { in DebugInfo()
/art/runtime/
Dprofiler.h243 ProfileData(const std::string& method_name, uint32_t count, uint32_t method_size, in ProfileData() argument
245 method_name_(method_name), count_(count), method_size_(method_size), in ProfileData()
274 bool GetProfileData(ProfileData* data, const std::string& method_name);
Dprofiler.cc584 std::string method_name = PrettyMethod(method); in Write() local
595 PreviousProfile::iterator pi = previous_.find(method_name); in Write()
600 os << StringPrintf("%s/%u/%u\n", method_name.c_str(), count, method_size); in Write()
610 std::string method_name = PrettyMethod(method.dex_method_index, *(method.dex_file)); in Write() local
635 PreviousProfile::iterator pi = previous_.find(method_name); in Write()
660 os << StringPrintf("%s/%u/%u/[%s]\n", method_name.c_str(), total_count, in Write()
875 bool ProfileFile::GetProfileData(ProfileFile::ProfileData* data, const std::string& method_name) { in GetProfileData() argument
876 ProfileMap::iterator i = profile_map_.find(method_name); in GetProfileData()
Dreflection_test.cc86 bool is_static, const char* method_name, in ReflectionTestMakeExecutable() argument
110 *method = is_static ? c->FindDirectMethod(method_name, method_signature) in ReflectionTestMakeExecutable()
111 : c->FindVirtualMethod(method_name, method_signature); in ReflectionTestMakeExecutable()
Dutils.cc665 std::string method_name(m->GetName()); in JniShortName() local
671 short_name += MangleForJni(method_name); in JniShortName()
Dthread.cc1619 const char* method_name = method->GetName(); in InternalStackTraceToStackTraceElementArray() local
1620 CHECK(method_name != nullptr); in InternalStackTraceToStackTraceElementArray()
1622 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), method_name))); in InternalStackTraceToStackTraceElementArray()
Dclass_linker.cc2885 const char* method_name = dex_file.StringDataByIdx(method_id.name_idx_); in LoadMethod() local
2904 if (UNLIKELY(strcmp("finalize", method_name) == 0)) { in LoadMethod()
2924 } else if (method_name[0] == '<') { in LoadMethod()
2926 bool is_init = (strcmp("<init>", method_name) == 0); in LoadMethod()
2927 bool is_clinit = !is_init && (strcmp("<clinit>", method_name) == 0); in LoadMethod()
2929 LOG(WARNING) << "Unexpected '<' at start of method name " << method_name; in LoadMethod()
2932 LOG(WARNING) << method_name << " didn't have expected constructor access flag in class " in LoadMethod()
/art/compiler/jni/
Djni_compiler_test.cc61 const char* method_name, const char* method_sig) { in CompileForTest() argument
70 method = c->FindDirectMethod(method_name, method_sig); in CompileForTest()
72 method = c->FindVirtualMethod(method_name, method_sig); in CompileForTest()
74 ASSERT_TRUE(method != nullptr) << method_name << " " << method_sig; in CompileForTest()
82 << method_name << " " << method_sig; in CompileForTest()
85 << method_name << " " << method_sig; in CompileForTest()
91 void SetUpForTest(bool direct, const char* method_name, const char* method_sig, in SetUpForTest() argument
99 CompileForTest(class_loader_, direct, method_name, method_sig); in SetUpForTest()
108 ASSERT_TRUE(jklass_ != nullptr) << method_name << " " << method_sig; in SetUpForTest()
111 jmethod_ = env_->GetStaticMethodID(jklass_, method_name, method_sig); in SetUpForTest()
[all …]
/art/runtime/quick/
Dinline_method_analyser.cc140 const char* method_name = ref.dex_file->GetMethodName(method_id); in IsSyntheticAccessor() local
141 return strncmp(method_name, "access$", strlen("access$")) == 0; in IsSyntheticAccessor()
/art/compiler/driver/
Dcompiler_driver.cc2268 bool CompilerDriver::SkipCompilation(const std::string& method_name) { in SkipCompilation() argument
2274 if (!profile_file_.GetProfileData(&data, method_name)) { in SkipCompilation()
2277 VLOG(compiler) << "not compiling " << method_name << " because it's not in the profile"; in SkipCompilation()
2289 LOG(INFO) << "compiling method " << method_name << " because its usage is part of top " in SkipCompilation()
2293 VLOG(compiler) << "not compiling method " << method_name in SkipCompilation()
Dcompiler_driver.h665 bool SkipCompilation(const std::string& method_name);
/art/runtime/interpreter/
Dinterpreter_common.cc769 const std::string& method_name, bool initialize_class, in UnstartedRuntimeFindClass() argument
780 method_name.c_str(), PrettyDescriptor(descriptor.c_str()).c_str()); in UnstartedRuntimeFindClass()