Symbol: syscall_stats
tools/perf/builtin-trace.c
1553
struct hashmap *syscall_stats;
tools/perf/builtin-trace.c
1571
static void delete_syscall_stats(struct hashmap *syscall_stats)
tools/perf/builtin-trace.c
1576
if (syscall_stats == NULL)
tools/perf/builtin-trace.c
1579
hashmap__for_each_entry(syscall_stats, pos, bkt)
tools/perf/builtin-trace.c
1581
hashmap__free(syscall_stats);
tools/perf/builtin-trace.c
1591
ttrace->syscall_stats = alloc_syscall_stats();
tools/perf/builtin-trace.c
1592
if (IS_ERR(ttrace->syscall_stats))
tools/perf/builtin-trace.c
1609
delete_syscall_stats(ttrace->syscall_stats);
tools/perf/builtin-trace.c
1610
ttrace->syscall_stats = NULL;
tools/perf/builtin-trace.c
188
struct hashmap *syscall_stats;
tools/perf/builtin-trace.c
2639
struct hashmap *syscall_stats = ttrace->syscall_stats;
tools/perf/builtin-trace.c
2640
struct syscall_stats *stats = NULL;
tools/perf/builtin-trace.c
2647
syscall_stats = trace->syscall_stats;
tools/perf/builtin-trace.c
2649
if (!hashmap__find(syscall_stats, id, &stats)) {
tools/perf/builtin-trace.c
2655
if (hashmap__add(syscall_stats, id, stats) < 0) {
tools/perf/builtin-trace.c
4466
trace->syscall_stats = alloc_syscall_stats();
tools/perf/builtin-trace.c
4467
if (IS_ERR(trace->syscall_stats))
tools/perf/builtin-trace.c
4644
delete_syscall_stats(trace->syscall_stats);
tools/perf/builtin-trace.c
4773
trace->syscall_stats = alloc_syscall_stats();
tools/perf/builtin-trace.c
4774
if (IS_ERR(trace->syscall_stats))
tools/perf/builtin-trace.c
4788
delete_syscall_stats(trace->syscall_stats);
tools/perf/builtin-trace.c
4804
struct syscall_stats *stats;
tools/perf/builtin-trace.c
4817
static struct syscall_entry *syscall__sort_stats(struct hashmap *syscall_stats)
tools/perf/builtin-trace.c
4823
nr = syscall_stats->sz;
tools/perf/builtin-trace.c
4829
hashmap__for_each_entry(syscall_stats, pos, bkt) {
tools/perf/builtin-trace.c
4830
struct syscall_stats *ss = pos->pvalue;
tools/perf/builtin-trace.c
4845
struct hashmap *syscall_stats)
tools/perf/builtin-trace.c
4852
entries = syscall__sort_stats(syscall_stats);
tools/perf/builtin-trace.c
4862
for (size_t i = 0; i < syscall_stats->sz; i++) {
tools/perf/builtin-trace.c
4864
struct syscall_stats *stats = entry->stats;
tools/perf/builtin-trace.c
4909
return syscall__dump_stats(trace, e_machine, fp, ttrace->syscall_stats);
tools/perf/builtin-trace.c
4914
return syscall__dump_stats(trace, e_machine, fp, trace->syscall_stats);
tools/perf/util/bpf-trace-summary.c
151
struct syscall_stats *stat = &node->stats;
tools/perf/util/bpf-trace-summary.c
173
struct syscall_stats *map_data)
tools/perf/util/bpf-trace-summary.c
237
struct syscall_stats *map_data)
tools/perf/util/bpf-trace-summary.c
240
struct syscall_stats *stat;
tools/perf/util/bpf-trace-summary.c
309
struct syscall_stats *map_data)
tools/perf/util/bpf-trace-summary.c
396
struct syscall_stats stat;
tools/perf/util/bpf-trace-summary.c
72
struct syscall_stats stats;
tools/perf/util/bpf-trace-summary.c
75
static double rel_stddev(struct syscall_stats *stat)
tools/perf/util/bpf_skel/syscall_summary.bpf.c
32
__type(value, struct syscall_stats);
tools/perf/util/bpf_skel/syscall_summary.bpf.c
74
struct syscall_stats *stats;
tools/perf/util/bpf_skel/syscall_summary.bpf.c
78
struct syscall_stats zero = {};