Home | History | Annotate | Download | only in bionic

Lines Matching refs:Elem

22 class __LIBC_HIDDEN__ Elem {
25 explicit Elem(FILE* fp, const char* name,
41 ~Elem() noexcept {
56 DISALLOW_COPY_AND_ASSIGN(Elem);
65 Elem root(fp, "malloc", "version=\"jemalloc-1\"");
71 Elem arena_elem(fp, "heap", "nr=\"%d\"", i);
73 Elem(fp, "allocated-large").contents("%zu", mi.ordblks);
74 Elem(fp, "allocated-huge").contents("%zu", mi.uordblks);
75 Elem(fp, "allocated-bins").contents("%zu", mi.fsmblks);
81 Elem bin_elem(fp, "bin", "nr=\"%d\"", j);
82 Elem(fp, "allocated").contents("%zu", mi.ordblks);
83 Elem(fp, "nmalloc").contents("%zu", mi.uordblks);
84 Elem(fp, "ndalloc").contents("%zu", mi.fordblks);
88 Elem(fp, "bins-total").contents("%zu", total);