Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Doptimizing_compiler_stats.h156 uint32_t GetStat(MethodCompilationStat stat) const { in GetStat() function
163 uint32_t compiled_intrinsics = GetStat(MethodCompilationStat::kCompiledIntrinsic); in Log()
164 uint32_t compiled_native_stubs = GetStat(MethodCompilationStat::kCompiledNativeStub); in Log()
166 GetStat(MethodCompilationStat::kAttemptBytecodeCompilation); in Log()
171 GetStat(MethodCompilationStat::kCompiledBytecode); in Log()
/art/runtime/
Dexec_utils.h121 bool GetStat(pid_t pid, /*out*/ ProcessStat* stat, /*out*/ std::string* error_msg) const;
Dexec_utils.cc301 if (!GetStat(pid, stat, &local_error_msg)) { in ExecAndReturnResult()
354 bool ExecUtils::GetStat(pid_t pid, in GetStat() function in art::ExecUtils
Dtrace.cc1185 os << "alloc-count=" << Runtime::Current()->GetStat(KIND_ALLOCATED_OBJECTS) << "\n"; in FinishTracing()
1186 os << "alloc-size=" << Runtime::Current()->GetStat(KIND_ALLOCATED_BYTES) << "\n"; in FinishTracing()
1187 os << "gc-count=" << Runtime::Current()->GetStat(KIND_GC_INVOCATIONS) << "\n"; in FinishTracing()
Druntime.h568 uint64_t GetStat(int kind);
Druntime.cc2517 uint64_t Runtime::GetStat(int kind) { in GetStat() function in art::Runtime
Dclass_linker.cc10718 os << "Classes initialized: " << runtime->GetStat(KIND_GLOBAL_CLASS_INIT_COUNT) << " in " in DumpForSigQuit()
10719 << PrettyDuration(runtime->GetStat(KIND_GLOBAL_CLASS_INIT_TIME)) << "\n"; in DumpForSigQuit()
/art/runtime/native/
Ddalvik_system_VMDebug.cc79 return static_cast<jint>(Runtime::Current()->GetStat(kind)); in VMDebug_getAllocCount()