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

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

Completed in 1443 milliseconds