Home
last modified time | relevance | path

Searched refs:Stats (Results 1 – 6 of 6) sorted by relevance

/art/libartbase/base/
Dstats.h27 class Stats {
31 Stats* Child(const char* name) { return &children_[name]; } in Child()
32 const std::unordered_map<const char*, Stats>& Children() const { return children_; } in Children()
55 std::unordered_map<const char*, Stats> children_;
/art/compiler/utils/
Ddedupe_set.h51 struct Stats;
Ddedupe_set-inl.h42 struct DedupeSet<InKey, StoreKey, Alloc, HashType, HashFunc, kShard>::Stats {
84 void UpdateStats(Thread* self, Stats* global_stats) REQUIRES(!lock_) {
239 Stats stats;
/art/runtime/
Dstack_map.cc226 void CodeInfo::CollectSizeStats(const uint8_t* code_info_data, /*out*/ Stats* parent) { in CollectSizeStats()
227 Stats* codeinfo_stats = parent->Child("CodeInfo"); in CollectSizeStats()
234 Stats* table_stats = codeinfo_stats->Child(table->GetName()); in CollectSizeStats()
239 Stats* column_stats = table_stats->Child(column_names[c]); in CollectSizeStats()
Dstack_map.h51 class Stats; variable
426 static void CollectSizeStats(const uint8_t* code_info, /*out*/ Stats* parent);
/art/oatdump/
Doatdump.cc805 const Stats& stats, in DumpStats()
816 std::map<std::pair<double, std::string>, const Stats&> sorted_children; in DumpStats()
822 Stats other; in DumpStats()
1785 Stats stats_;
2463 struct Stats { struct in art::ImageDumper
2495 Stats() {} in Stats() argument