/art/runtime/base/ |
D | timing_logger_test.cc | 35 EXPECT_STREQ(timings[0].GetName(), split1name); in TEST_F() 54 EXPECT_STREQ(timings[0].GetName(), split1name); in TEST_F() 57 EXPECT_STREQ(timings[2].GetName(), split2name); in TEST_F() 60 EXPECT_STREQ(timings[4].GetName(), split3name); in TEST_F() 94 EXPECT_STREQ(timings[idx_1].GetName(), name1); in TEST_F() 95 EXPECT_STREQ(timings[idx_2].GetName(), name2); in TEST_F() 96 EXPECT_STREQ(timings[idx_3].GetName(), name3); in TEST_F() 97 EXPECT_STREQ(timings[idx_4].GetName(), name4); in TEST_F() 98 EXPECT_STREQ(timings[idx_5].GetName(), name5); in TEST_F()
|
D | timing_logger.cc | 78 AddPair(timings[i].GetName(), timing_data.GetExclusiveTime(i)); in AddLogger() 165 if (timings_[i].IsStartTiming() && strcmp(timings_[i].GetName(), name) == 0) { in FindTimingIndex() 197 << timings_[open_stack.back()].GetName() << " at index " << open_stack.back(); in CalculateTimingData() 232 os << " " << timings_[i].GetName() << "\n"; in Dump()
|
/art/test/960-default-smali/src/ |
D | Greeter3.java | 17 public String GetName(); in GetName() method 19 return "Hello " + GetName(); in SayHi()
|
D | D.java | 17 public String GetName() { in GetName() method in D
|
/art/test/ti-stress/ |
D | stress.cc | 143 const char* GetName() const { in GetName() function in art::ScopedThreadInfo 189 const char* GetName() const { in GetName() function in art::ScopedClassInfo 262 const char* GetName() const { in GetName() function in art::ScopedMethodInfo 317 const char* GetName() const { in GetName() function in art::ScopedFieldInfo 341 return os << m.GetDeclaringClassInfo().GetName() << "->" << m.GetName() in operator <<() 350 return os << m.GetDeclaringClassInfo().GetName() << "->" << m.GetName() << m.GetSignature() in operator <<() 369 << thread_info.GetName(); in doJvmtiMethodBind() 372 static std::string GetName(jvmtiEnv* jvmtienv, JNIEnv* jnienv, jobject obj) { in GetName() function 404 return val.l != nullptr ? GetName(env, jnienv, val.l) : "null"; in GetValOf() 453 << "type \"" << obj_class_info.GetName() << "\" in method \"" << method_info in FieldAccessHook() [all …]
|
/art/runtime/ |
D | debug_print.cc | 44 oss << "image;" << ispace->GetName() << ";" in DescribeSpace() 46 << (ispace->GetImageFilename() == cs->GetName() ? "+" : ispace->GetImageFilename()) in DescribeSpace() 49 oss << "continuous;" << cs->GetName(); in DescribeSpace() 55 oss << "discontinuous;" << ds->GetName(); in DescribeSpace()
|
D | art_field.cc | 71 result += GetName(); in PrettyField()
|
D | thread-inl.h | 80 << "Holding unexpected mutex " << held_mutex->GetName() in CheckEmptyCheckpointFromWeakRefAccess() 156 LOG(ERROR) << "holding \"" << held_mutex->GetName() in AssertThreadSuspensionIsAllowable() 171 << Locks::user_code_suspension_lock_->GetName() << "\"! Thread would never " in AssertThreadSuspensionIsAllowable()
|
/art/runtime/gc/space/ |
D | space.cc | 36 os << GetName() << ":" << GetGcRetentionPolicy(); in Dump() 138 std::string temp_name(live_bitmap_->GetName()); in SwapBitmaps() 139 live_bitmap_->SetName(mark_bitmap_->GetName()); in SwapBitmaps()
|
D | malloc_space.cc | 161 CheckedCall(mprotect, GetName(), original_end, increment, PROT_READ | PROT_WRITE); in MoreCore() 172 CheckedCall(madvise, GetName(), new_end, size, MADV_DONTNEED); in MoreCore() 173 CheckedCall(mprotect, GetName(), new_end, size, PROT_NONE); in MoreCore() 241 VLOG(heap) << "Failed creating zygote space from space " << GetName(); in CreateZygoteSpace() 255 << ",name=\"" << GetName() << "\"]"; in Dump()
|
/art/tools/jvmti-agents/titrace/ |
D | instruction_decoder.h | 32 virtual const char* GetName(size_t opcode) = 0;
|
/art/tools/jvmti-agents/breakpoint-logger/ |
D | breakpoint_logger.cc | 93 const char* GetName() const { in GetName() function in breakpoint_logger::ScopedThreadInfo 142 const char* GetName() const { in GetName() function in breakpoint_logger::ScopedClassInfo 222 const char* GetName() const { in GetName() function in breakpoint_logger::ScopedMethodInfo 257 return os << method.GetDeclaringClassInfo().GetName() << "->" << method.GetName() in operator <<() 275 << location << " in method " << method_info << " thread: " << info.GetName(); in BreakpointCB()
|
/art/runtime/ti/ |
D | agent.h | 43 const std::string& GetName() const { in GetName() function 100 const std::string& GetName() const { in GetName() function
|
/art/runtime/gc/collector/ |
D | partial_mark_sweep.cc | 30 cumulative_timings_.SetName(GetName()); in PartialMarkSweep()
|
D | garbage_collector.cc | 147 ScopedTrace trace(android::base::StringPrintf("%s %s GC", PrettyCause(gc_cause), GetName())); in Run() 323 os << GetName() << " total time: " << PrettyDuration(total_ns) in DumpPerformanceInfo() 325 << GetName() << " freed: " << freed_objects in DumpPerformanceInfo() 327 << GetName() << " throughput: " << freed_objects / seconds << "/s / " in DumpPerformanceInfo()
|
D | sticky_mark_sweep.cc | 33 cumulative_timings_.SetName(GetName()); in StickyMarkSweep()
|
/art/test/543-env-long-ref/ |
D | env_long_ref.cc | 33 std::string m_name(m->GetName()); in Java_Main_lookForMyRegisters()
|
/art/test/004-ReferenceMap/ |
D | stack_walk_refmap_jni.cc | 45 std::string m_name(m->GetName()); in VisitFrame()
|
/art/runtime/gc/accounting/ |
D | remembered_set.h | 70 const std::string& GetName() const { in GetName() function
|
/art/test/004-StackWalk/ |
D | stack_walk_jni.cc | 43 std::string_view m_name(m->GetName()); in VisitFrame()
|
/art/openjdkjvmti/ |
D | transform.cc | 138 VLOG(signals) << "Lazy initialization of dex file for transformation of " << res->GetName() in Action() 173 << def->GetName(); in RemoveDefinition() 273 def->GetName().c_str(), in TransformSingleClassDirect()
|
/art/test/461-get-reference-vreg/ |
D | get_reference_vreg_jni.cc | 36 std::string m_name(m->GetName()); in FindMethodIndex()
|
/art/test/466-get-live-vreg/ |
D | get_live_vreg_jni.cc | 37 std::string m_name(m->GetName()); in VisitFrame()
|
/art/tools/jvmti-agents/ti-fast/ |
D | tifast.cc | 153 const char* GetName() const { in GetName() function in tifast::__anon034dbc8c0111::ScopedThreadInfo 202 const char* GetName() const { in GetName() function in tifast::__anon034dbc8c0111::ScopedClassInfo 277 const char* GetName() const { in GetName() function in tifast::__anon034dbc8c0111::ScopedMethodInfo 310 return os << c.GetName() << "<" << generic << ">" << " file: " << c.GetSourceFileName(); in operator <<() 312 return os << c.GetName() << " file: " << c.GetSourceFileName(); in operator <<() 317 return os << m.GetDeclaringClassInfo().GetName() << "->" << m.GetName() << m.GetSignature() in operator <<() 545 stream << ", jthread[" << sti.GetName() << "]"; in PrintRest()
|
/art/runtime/mirror/ |
D | class.cc | 256 ObjPtr<String> name = h_this->GetName(); in ComputeName() 547 if (np_method->GetName() == name && np_method->GetSignature() == signature) { in FindClassMethodWithSignature() 560 if (method.GetName() == name && method.GetSignature() == signature) { in FindClassMethodWithSignature() 585 if (method.GetName() == name && method.GetSignature() == signature) { in FindClassMethodWithSignature() 668 if (method.GetName() == name && method.GetSignature() == signature) { in FindClassMethod() 696 if (method.GetName() == name && method.GetSignature() == signature) { in FindClassMethod() 709 if (method.GetName() == name && method.GetSignature() == signature) { in FindConstructor() 719 if (name == np_method->GetName()) { in FindDeclaredDirectMethodByName() 729 if (name == np_method->GetName()) { in FindDeclaredVirtualMethodByName() 804 DCHECK_STREQ(method.GetName(), "<clinit>"); in FindClassInitializer() [all …]
|