/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 | 77 AddPair(timings[i].GetName(), timing_data.GetExclusiveTime(i)); in AddLogger() 161 if (timings_[i].IsStartTiming() && strcmp(timings_[i].GetName(), name) == 0) { in FindTimingIndex() 193 << timings_[open_stack.back()].GetName() << " at index " << open_stack.back(); in CalculateTimingData() 228 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 | 116 const char* GetName() const { in GetName() function in art::ScopedThreadInfo 165 const char* GetName() const { in GetName() function in art::ScopedClassInfo 244 const char* GetName() const { in GetName() function in art::ScopedMethodInfo 306 const char* GetName() const { in GetName() function in art::ScopedFieldInfo 335 return os << m.GetDeclaringClassInfo().GetName() << "->" << m.GetName() in operator <<() 344 return os << m.GetDeclaringClassInfo().GetName() << "->" << m.GetName() << m.GetSignature() in operator <<() 363 << thread_info.GetName(); in doJvmtiMethodBind() 366 static std::string GetName(jvmtiEnv* jvmtienv, JNIEnv* jnienv, jobject obj) { in GetName() function 398 return val.l != nullptr ? GetName(env, jnienv, val.l) : "null"; in GetValOf() 447 << "type \"" << obj_class_info.GetName() << "\" in method \"" << method_info in FieldAccessHook() [all …]
|
/art/runtime/gc/space/ |
D | space.cc | 34 os << GetName() << ":" << GetGcRetentionPolicy(); in Dump() 137 std::string temp_name(live_bitmap_->GetName()); in SwapBitmaps() 138 live_bitmap_->SetName(mark_bitmap_->GetName()); in SwapBitmaps()
|
D | malloc_space.cc | 144 CHECK_MEMORY_CALL(mprotect, (original_end, increment, PROT_READ | PROT_WRITE), GetName()); in MoreCore() 155 CHECK_MEMORY_CALL(madvise, (new_end, size, MADV_DONTNEED), GetName()); in MoreCore() 156 CHECK_MEMORY_CALL(mprotect, (new_end, size, PROT_NONE), GetName()); in MoreCore() 218 VLOG(heap) << "Failed creating zygote space from space " << GetName(); in CreateZygoteSpace() 232 << ",name=\"" << GetName() << "\"]"; in Dump()
|
/art/test/570-checker-osr/ |
D | osr.cc | 40 std::string m_name(m->GetName()); in VisitFrame() 100 std::string m_name(m->GetName()); in VisitFrame() 134 std::string m_name(m->GetName()); in VisitFrame()
|
/art/runtime/gc/collector/ |
D | garbage_collector.cc | 88 ScopedTrace trace(android::base::StringPrintf("%s %s GC", PrettyCause(gc_cause), GetName())); in Run() 232 os << GetName() << " total time: " << PrettyDuration(total_ns) in DumpPerformanceInfo() 234 << GetName() << " freed: " << freed_objects in DumpPerformanceInfo() 236 << GetName() << " throughput: " << freed_objects / seconds << "/s / " in DumpPerformanceInfo()
|
D | partial_mark_sweep.cc | 30 cumulative_timings_.SetName(GetName()); in PartialMarkSweep()
|
D | sticky_mark_sweep.cc | 33 cumulative_timings_.SetName(GetName()); in StickyMarkSweep()
|
/art/runtime/mirror/ |
D | class.cc | 211 String* name = h_this->GetName(); in ComputeName() 412 if (method.GetName() == name && method.GetSignature() == signature) { in FindInterfaceMethodWithSignature() 424 if (method.GetName() == name && method.GetSignature() == signature) { in FindInterfaceMethodWithSignature() 436 method.GetName() == name && method.GetSignature() == signature) { in FindInterfaceMethodWithSignature() 510 if (np_method->GetName() == name && np_method->GetSignature() == signature) { in FindClassMethodWithSignature() 523 if (method.GetName() == name && method.GetSignature() == signature) { in FindClassMethodWithSignature() 548 if (method.GetName() == name && method.GetSignature() == signature) { in FindClassMethodWithSignature() 596 if (method.GetName() == name && method.GetSignature() == signature) { in FindClassMethod() 626 if (method.GetName() == name && method.GetSignature() == signature) { in FindClassMethod() 654 if (method.GetName() == name && method.GetSignature() == signature) { in FindClassMethod() [all …]
|
D | object_test.cc | 495 EXPECT_STREQ(m1_1->GetName(), "m1"); in TEST_F() 497 EXPECT_STREQ(m2_1->GetName(), "m2"); in TEST_F() 499 EXPECT_STREQ(m3_1->GetName(), "m3"); in TEST_F() 501 EXPECT_STREQ(m4_1->GetName(), "m4"); in TEST_F() 504 EXPECT_STREQ(m1_2->GetName(), "m1"); in TEST_F() 506 EXPECT_STREQ(m2_2->GetName(), "m2"); in TEST_F() 508 EXPECT_STREQ(m3_2->GetName(), "m3"); in TEST_F() 510 EXPECT_STREQ(m4_2->GetName(), "m4"); in TEST_F()
|
/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 | 69 const std::string& GetName() const { in GetName() function
|
/art/test/543-env-long-ref/ |
D | env_long_ref.cc | 39 std::string m_name(m->GetName()); in VisitFrame()
|
/art/test/466-get-live-vreg/ |
D | get_live_vreg_jni.cc | 36 std::string m_name(m->GetName()); in VisitFrame()
|
/art/test/004-StackWalk/ |
D | stack_walk_jni.cc | 41 StringPiece m_name(m->GetName()); in VisitFrame()
|
/art/runtime/ |
D | art_field.cc | 77 result += GetName(); in PrettyField()
|
D | thread-inl.h | 78 << "Holding unexpected mutex " << held_mutex->GetName() in CheckEmptyCheckpointFromWeakRefAccess() 154 LOG(ERROR) << "holding \"" << held_mutex->GetName() in AssertThreadSuspensionIsAllowable() 169 << Locks::user_code_suspension_lock_->GetName() << "\"! Thread would never " in AssertThreadSuspensionIsAllowable()
|
D | native_bridge_art_interface.cc | 68 methods[count].name = m.GetName(); in GetNativeMethods()
|
/art/runtime/openjdkjvmti/ |
D | ti_class_definition.h | 98 const std::string& GetName() const { in GetName() function
|
/art/runtime/ti/ |
D | agent.h | 52 const std::string& GetName() const { in GetName() function
|
/art/test/461-get-reference-vreg/ |
D | get_reference_vreg_jni.cc | 38 std::string m_name(m->GetName()); in VisitFrame()
|
/art/runtime/gc/ |
D | verification.cc | 103 oss << " name=" << field->GetName(); in LogHeapCorruption() 164 field != nullptr ? field->GetName() : ""); in operator ()()
|