Searched refs:GetStat (Results 1 – 11 of 11) sorted by relevance
/aosp12/art/compiler/optimizing/ |
H A D | optimizing_compiler_stats.h | 137 uint32_t GetStat(MethodCompilationStat stat) const { in GetStat() function 144 uint32_t compiled_intrinsics = GetStat(MethodCompilationStat::kCompiledIntrinsic); in Log() 145 uint32_t compiled_native_stubs = GetStat(MethodCompilationStat::kCompiledNativeStub); in Log() 147 GetStat(MethodCompilationStat::kAttemptBytecodeCompilation); in Log() 152 GetStat(MethodCompilationStat::kCompiledBytecode); in Log()
|
/aosp12/system/extras/simpleperf/ |
H A D | RecordReadThread_test.cpp | 354 ASSERT_EQ(thread.GetStat().lost_samples, 1u); in TEST_F() 355 ASSERT_EQ(thread.GetStat().lost_non_samples, 0u); in TEST_F() 356 ASSERT_EQ(thread.GetStat().cut_stack_samples, 1u); in TEST_F() 405 ASSERT_GT(thread.GetStat().lost_samples, 0u); in TEST_F() 406 ASSERT_EQ(thread.GetStat().lost_samples, total_samples - received_samples); in TEST_F() 407 ASSERT_EQ(thread.GetStat().cut_stack_samples, 0u); in TEST_F() 550 ASSERT_EQ(aux_data_size, thread.GetStat().aux_data_size); in TEST_F() 551 ASSERT_EQ(lost_aux_data_size, thread.GetStat().lost_aux_data_size); in TEST_F()
|
H A D | CallChainJoiner_test.cpp | 227 ASSERT_EQ(joiner.GetStat().chain_count, 30u); in TEST_F() 228 ASSERT_EQ(joiner.GetStat().before_join_node_count, 80u); in TEST_F() 229 ASSERT_EQ(joiner.GetStat().after_join_node_count, 110u); in TEST_F() 230 ASSERT_EQ(joiner.GetStat().after_join_max_chain_length, 5u); in TEST_F()
|
H A D | RecordReadThread.h | 154 const RecordStat& GetStat() const { return stat_; } in GetStat() function
|
H A D | CallChainJoiner.h | 167 const Stat& GetStat() { return stat_; } in GetStat() function
|
H A D | event_selection_set.h | 170 const simpleperf::RecordStat& GetRecordStat() { return record_read_thread_->GetStat(); } in GetRecordStat()
|
/aosp12/art/runtime/ |
H A D | trace.cc | 653 os << "alloc-count=" << Runtime::Current()->GetStat(KIND_ALLOCATED_OBJECTS) << "\n"; in FinishTracing() 654 os << "alloc-size=" << Runtime::Current()->GetStat(KIND_ALLOCATED_BYTES) << "\n"; in FinishTracing() 655 os << "gc-count=" << Runtime::Current()->GetStat(KIND_GC_INVOCATIONS) << "\n"; in FinishTracing()
|
H A D | runtime.h | 491 uint64_t GetStat(int kind);
|
H A D | runtime.cc | 2283 uint64_t Runtime::GetStat(int kind) { in GetStat() function in art::Runtime
|
H A D | class_linker.cc | 9876 os << "Classes initialized: " << runtime->GetStat(KIND_GLOBAL_CLASS_INIT_COUNT) << " in " in DumpForSigQuit() 9877 << PrettyDuration(runtime->GetStat(KIND_GLOBAL_CLASS_INIT_TIME)) << "\n"; in DumpForSigQuit()
|
/aosp12/art/runtime/native/ |
H A D | dalvik_system_VMDebug.cc | 86 return static_cast<jint>(Runtime::Current()->GetStat(kind)); in VMDebug_getAllocCount()
|