Home
last modified time | relevance | path

Searched refs:GetName (Results 1 – 25 of 90) sorted by relevance

1234

/art/runtime/base/
Dtiming_logger_test.cc35 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()
Dtiming_logger.cc77 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/
DGreeter3.java17 public String GetName(); in GetName() method
19 return "Hello " + GetName(); in SayHi()
DD.java17 public String GetName() { in GetName() method in D
/art/test/ti-stress/
Dstress.cc116 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/
Dspace.cc34 os << GetName() << ":" << GetGcRetentionPolicy(); in Dump()
137 std::string temp_name(live_bitmap_->GetName()); in SwapBitmaps()
138 live_bitmap_->SetName(mark_bitmap_->GetName()); in SwapBitmaps()
Dmalloc_space.cc144 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/
Dosr.cc40 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/
Dgarbage_collector.cc88 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()
Dpartial_mark_sweep.cc30 cumulative_timings_.SetName(GetName()); in PartialMarkSweep()
Dsticky_mark_sweep.cc33 cumulative_timings_.SetName(GetName()); in StickyMarkSweep()
/art/runtime/mirror/
Dclass.cc211 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 …]
Dobject_test.cc495 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/
Dstack_walk_refmap_jni.cc45 std::string m_name(m->GetName()); in VisitFrame()
/art/runtime/gc/accounting/
Dremembered_set.h69 const std::string& GetName() const { in GetName() function
/art/test/543-env-long-ref/
Denv_long_ref.cc39 std::string m_name(m->GetName()); in VisitFrame()
/art/test/466-get-live-vreg/
Dget_live_vreg_jni.cc36 std::string m_name(m->GetName()); in VisitFrame()
/art/test/004-StackWalk/
Dstack_walk_jni.cc41 StringPiece m_name(m->GetName()); in VisitFrame()
/art/runtime/
Dart_field.cc77 result += GetName(); in PrettyField()
Dthread-inl.h78 << "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()
Dnative_bridge_art_interface.cc68 methods[count].name = m.GetName(); in GetNativeMethods()
/art/runtime/openjdkjvmti/
Dti_class_definition.h98 const std::string& GetName() const { in GetName() function
/art/runtime/ti/
Dagent.h52 const std::string& GetName() const { in GetName() function
/art/test/461-get-reference-vreg/
Dget_reference_vreg_jni.cc38 std::string m_name(m->GetName()); in VisitFrame()
/art/runtime/gc/
Dverification.cc103 oss << " name=" << field->GetName(); in LogHeapCorruption()
164 field != nullptr ? field->GetName() : ""); in operator ()()

1234