Home
last modified time | relevance | path

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

12345

/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/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.cc78 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/ti-stress/
Dstress.cc143 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/tools/jvmti-agents/ti-alloc-sample/
Dti_alloc_sample.cc73 const char* GetName() const { in GetName() function in tifast::__anon9d4dc8ac0111::ScopedThreadInfo
122 const char* GetName() const { in GetName() function in tifast::__anon9d4dc8ac0111::ScopedClassInfo
197 const char* GetName() const { in GetName() function in tifast::__anon9d4dc8ac0111::ScopedMethodInfo
228 return os << c.GetName() << "<" << generic << ">" << " file: " << c.GetSourceFileName(); in operator <<()
230 return os << c.GetName() << " file: " << c.GetSourceFileName(); in operator <<()
283 allocation << "jthread[" << sti.GetName() << "]"; in formatAllocation()
299 method = std::string(smi.GetDeclaringClassInfo().GetName()) + in formatMethod()
300 "::" + smi.GetName() + smi.GetSignature(); in formatMethod()
/art/runtime/gc/space/
Dspace.cc36 os << GetName() << ":" << GetGcRetentionPolicy(); in Dump()
131 std::string temp_name(live_bitmap_.GetName()); in SwapBitmaps()
132 live_bitmap_.SetName(mark_bitmap_.GetName()); in SwapBitmaps()
Dmalloc_space.cc160 CheckedCall(mprotect, GetName(), original_end, increment, PROT_READ | PROT_WRITE); in MoreCore()
171 CheckedCall(madvise, GetName(), new_end, size, MADV_DONTNEED); in MoreCore()
172 CheckedCall(mprotect, GetName(), new_end, size, PROT_NONE); in MoreCore()
242 VLOG(heap) << "Failed creating zygote space from space " << GetName(); in CreateZygoteSpace()
256 << ",name=\"" << GetName() << "\"]"; in Dump()
/art/runtime/
Ddebug_print.cc44 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()
Dart_field.cc66 result += GetName(); in PrettyField()
Dthread-inl.h81 << "Holding unexpected mutex " << held_mutex->GetName() in CheckEmptyCheckpointFromWeakRefAccess()
158 LOG(ERROR) << "holding \"" << held_mutex->GetName() in AssertThreadSuspensionIsAllowable()
173 << Locks::user_code_suspension_lock_->GetName() << "\"! Thread would never " in AssertThreadSuspensionIsAllowable()
/art/tools/jvmti-agents/titrace/
Dinstruction_decoder.h32 virtual const char* GetName(size_t opcode) = 0;
/art/runtime/gc/collector/
Dpartial_mark_sweep.cc30 cumulative_timings_.SetName(GetName()); in PartialMarkSweep()
Dgarbage_collector.cc147 ScopedTrace trace(android::base::StringPrintf("%s %s GC", PrettyCause(gc_cause), GetName())); in Run()
314 os << GetName() << " total time: " << PrettyDuration(total_ns) in DumpPerformanceInfo()
316 << GetName() << " freed: " << freed_objects in DumpPerformanceInfo()
318 << GetName() << " throughput: " << freed_objects / seconds << "/s / " in DumpPerformanceInfo()
Dsticky_mark_sweep.cc33 cumulative_timings_.SetName(GetName()); in StickyMarkSweep()
/art/tools/jvmti-agents/breakpoint-logger/
Dbreakpoint_logger.cc93 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/
Dagent.h43 const std::string& GetName() const { in GetName() function
100 const std::string& GetName() const { in GetName() function
/art/test/543-env-long-ref/
Denv_long_ref.cc33 std::string m_name(m->GetName()); in Java_Main_lookForMyRegisters()
/art/test/004-ReferenceMap/
Dstack_walk_refmap_jni.cc45 std::string m_name(m->GetName()); in VisitFrame()
/art/runtime/gc/accounting/
Dremembered_set.h70 const std::string& GetName() const { in GetName() function
/art/test/004-StackWalk/
Dstack_walk_jni.cc43 std::string_view m_name(m->GetName()); in VisitFrame()
/art/test/466-get-live-vreg/
Dget_live_vreg_jni.cc37 std::string m_name(m->GetName()); in VisitFrame()
/art/openjdkjvmti/
Dtransform.cc144 VLOG(signals) << "Lazy initialization of dex file for transformation of " << res->GetName() in Action()
179 << def->GetName(); in RemoveDefinition()
286 def->GetName().c_str(), in TransformSingleClassDirect()
/art/tools/jvmti-agents/ti-fast/
Dtifast.cc150 const char* GetName() const { in GetName() function in tifast::__anon4fd488430111::ScopedThreadInfo
199 const char* GetName() const { in GetName() function in tifast::__anon4fd488430111::ScopedClassInfo
274 const char* GetName() const { in GetName() function in tifast::__anon4fd488430111::ScopedMethodInfo
307 return os << c.GetName() << "<" << generic << ">" << " file: " << c.GetSourceFileName(); in operator <<()
309 return os << c.GetName() << " file: " << c.GetSourceFileName(); in operator <<()
314 return os << m.GetDeclaringClassInfo().GetName() << "->" << m.GetName() << m.GetSignature() in operator <<()
542 stream << ", jthread[" << sti.GetName() << "]"; in PrintRest()
/art/test/461-get-reference-vreg/
Dget_reference_vreg_jni.cc60 std::string m_name(m->GetName()); in FindMethodIndex()

12345