Home
last modified time | relevance | path

Searched refs:GetStat (Results 1 – 11 of 11) sorted by relevance

/aosp12/art/compiler/optimizing/
H A Doptimizing_compiler_stats.h137 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 DRecordReadThread_test.cpp354 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 DCallChainJoiner_test.cpp227 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 DRecordReadThread.h154 const RecordStat& GetStat() const { return stat_; } in GetStat() function
H A DCallChainJoiner.h167 const Stat& GetStat() { return stat_; } in GetStat() function
H A Devent_selection_set.h170 const simpleperf::RecordStat& GetRecordStat() { return record_read_thread_->GetStat(); } in GetRecordStat()
/aosp12/art/runtime/
H A Dtrace.cc653 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 Druntime.h491 uint64_t GetStat(int kind);
H A Druntime.cc2283 uint64_t Runtime::GetStat(int kind) { in GetStat() function in art::Runtime
H A Dclass_linker.cc9876 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 Ddalvik_system_VMDebug.cc86 return static_cast<jint>(Runtime::Current()->GetStat(kind)); in VMDebug_getAllocCount()