Searched refs:print_log2_hist (Results 1 – 24 of 24) sorted by relevance
/external/bcc/tests/python/ |
D | test_histogram.py | 27 b["hist1"].print_log2_hist() 33 b["hist1"].print_log2_hist() 55 b["hist1"].print_log2_hist() 72 b["hist1"].print_log2_hist() 102 b["mk_hist"].print_log2_hist("size", "k_1 & k_2",
|
D | test_perf_event.py | 55 b["dist"].print_log2_hist()
|
/external/bcc/tools/old/ |
D | softirqs.py | 188 dist.print_log2_hist(label, "CPU") 190 dist.print_log2_hist(label, "softirq", section_print_fn=b.ksym)
|
/external/bcc/examples/tracing/ |
D | bitehist.py | 44 b["dist"].print_log2_hist("kbytes")
|
D | strlen_hist.py | 55 dist.print_log2_hist(sym + " return:")
|
D | vfsreadlat.py | 63 b["dist"].print_log2_hist("usecs")
|
/external/bcc/tools/ |
D | funclatency.py | 254 dist.print_log2_hist(label, "Function", section_print_fn=print_section, 257 dist.print_log2_hist(label)
|
D | bitesize.py | 75 dist.print_log2_hist("Kbytes", "Process Name",
|
D | softirqs.py | 144 dist.print_log2_hist(label, "softirq", section_print_fn=vec_to_name)
|
D | biolatency.py | 140 dist.print_log2_hist(label, "disk")
|
D | dbstat.py | 104 latencies.print_log2_hist("query latency (%s)" %
|
D | hardirqs.py | 171 dist.print_log2_hist(label, "hardirq")
|
D | xfsdist.py | 167 dist.print_log2_hist(label, "operation")
|
D | nfsdist.py | 168 dist.print_log2_hist(label, "operation", section_print_fn=bytes.decode)
|
D | cpudist.py | 184 dist.print_log2_hist(label, section, section_print_fn=pid_to_comm)
|
D | runqlat.py | 272 dist.print_log2_hist(label, section, section_print_fn=int)
|
D | btrfsdist.py | 224 dist.print_log2_hist(label, "operation")
|
D | ext4dist.py | 219 dist.print_log2_hist(label, "operation", section_print_fn=bytes.decode)
|
D | zfsdist.py | 181 dist.print_log2_hist(label, "operation")
|
D | argdist.py | 508 data.print_log2_hist(val_type=label)
|
/external/bcc/examples/usdt_sample/scripts/ |
D | lat_dist.py | 99 dist.print_log2_hist("latency (us)")
|
/external/bcc/docs/ |
D | reference_guide.md | 81 - [6. print_log2_hist()](#6-print_log2_hist) 1201 - map summary: using items(), or print_log2_hist(), covered in the Maps section. 1331 dist.print_log2_hist(sym + " return:") 1339 ### 6. print_log2_hist() 1341 Syntax: ```table.print_log2_hist(val_type="value", section_header="Bucket ptr", section_print_fn=No… 1365 b["dist"].print_log2_hist("kbytes") 1387 [search /examples](https://github.com/iovisor/bcc/search?q=print_log2_hist+path%3Aexamples+language… 1388 [search /tools](https://github.com/iovisor/bcc/search?q=print_log2_hist+path%3Atools+language%3Apyt…
|
D | tutorial_bcc_python_developer.md | 380 b["dist"].print_log2_hist("kbytes") 394 1. ```b["dist"].print_log2_hist("kbytes")```: Prints the "dist" histogram as power-of-2, with a col…
|
/external/bcc/src/python/bcc/ |
D | table.py | 294 def print_log2_hist(self, val_type="value", section_header="Bucket ptr", member in TableBase
|