Home
last modified time | relevance | path

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

/external/bcc/tools/
Dbitesize.py76 section_print_fn=bytes.decode)
Dsoftirqs.py144 dist.print_log2_hist(label, "softirq", section_print_fn=vec_to_name)
Dnfsdist.py168 dist.print_log2_hist(label, "operation", section_print_fn=bytes.decode)
Dcpudist.py184 dist.print_log2_hist(label, section, section_print_fn=pid_to_comm)
Drunqlat.py272 dist.print_log2_hist(label, section, section_print_fn=int)
Dext4dist.py219 dist.print_log2_hist(label, "operation", section_print_fn=bytes.decode)
Dfunclatency.py254 dist.print_log2_hist(label, "Function", section_print_fn=print_section,
/external/bcc/src/python/bcc/
Dtable.py295 section_print_fn=None, bucket_fn=None, strip_leading_zero=None, argument
334 if section_print_fn:
336 section_print_fn(bucket)))
347 section_print_fn=None, bucket_fn=None, bucket_sort_fn=None): argument
383 if section_print_fn:
385 section_print_fn(bucket)))
/external/bcc/tests/python/
Dtest_histogram.py103 section_print_fn=lambda bucket: "%3d %d" % (bucket[0], bucket[1]),
/external/bcc/tools/old/
Dsoftirqs.py190 dist.print_log2_hist(label, "softirq", section_print_fn=b.ksym)
/external/bcc/docs/
Dreference_guide.md1341 Syntax: ```table.print_log2_hist(val_type="value", section_header="Bucket ptr", section_print_fn=No…
1349 - section_print_fn: if section_print_fn is not None, it will be passed the bucket value.
1392 Syntax: ```table.print_linear_hist(val_type="value", section_header="Bucket ptr", section_print_fn=…
1400 - section_print_fn: if section_print_fn is not None, it will be passed the bucket value.