Symbol: syscall_stats
tools/perf/builtin-trace.c
1543
struct hashmap *syscall_stats;
tools/perf/builtin-trace.c
1563
static void delete_syscall_stats(struct hashmap *syscall_stats)
tools/perf/builtin-trace.c
1568
if (!syscall_stats)
tools/perf/builtin-trace.c
1571
hashmap__for_each_entry(syscall_stats, pos, bkt)
tools/perf/builtin-trace.c
1573
hashmap__free(syscall_stats);
tools/perf/builtin-trace.c
1583
ttrace->syscall_stats = alloc_syscall_stats();
tools/perf/builtin-trace.c
1584
if (!ttrace->syscall_stats)
tools/perf/builtin-trace.c
1601
delete_syscall_stats(ttrace->syscall_stats);
tools/perf/builtin-trace.c
1602
ttrace->syscall_stats = NULL;
tools/perf/builtin-trace.c
188
struct hashmap *syscall_stats;
tools/perf/builtin-trace.c
2657
struct hashmap *syscall_stats = ttrace->syscall_stats;
tools/perf/builtin-trace.c
2658
struct syscall_stats *stats = NULL;
tools/perf/builtin-trace.c
2665
syscall_stats = trace->syscall_stats;
tools/perf/builtin-trace.c
2667
if (!hashmap__find(syscall_stats, id, &stats)) {
tools/perf/builtin-trace.c
2673
if (hashmap__add(syscall_stats, id, stats) < 0) {
tools/perf/builtin-trace.c
4520
trace->syscall_stats = alloc_syscall_stats();
tools/perf/builtin-trace.c
4521
if (!trace->syscall_stats)
tools/perf/builtin-trace.c
4698
delete_syscall_stats(trace->syscall_stats);
tools/perf/builtin-trace.c
4827
trace->syscall_stats = alloc_syscall_stats();
tools/perf/builtin-trace.c
4828
if (!trace->syscall_stats)
tools/perf/builtin-trace.c
4842
delete_syscall_stats(trace->syscall_stats);
tools/perf/builtin-trace.c
4858
struct syscall_stats *stats;
tools/perf/builtin-trace.c
4871
static struct syscall_entry *syscall__sort_stats(struct hashmap *syscall_stats)
tools/perf/builtin-trace.c
4877
nr = syscall_stats->sz;
tools/perf/builtin-trace.c
4883
hashmap__for_each_entry(syscall_stats, pos, bkt) {
tools/perf/builtin-trace.c
4884
struct syscall_stats *ss = pos->pvalue;
tools/perf/builtin-trace.c
4899
struct hashmap *syscall_stats)
tools/perf/builtin-trace.c
4906
entries = syscall__sort_stats(syscall_stats);
tools/perf/builtin-trace.c
4916
for (size_t i = 0; i < syscall_stats->sz; i++) {
tools/perf/builtin-trace.c
4918
struct syscall_stats *stats = entry->stats;
tools/perf/builtin-trace.c
4965
return syscall__dump_stats(trace, e_machine, fp, ttrace->syscall_stats);
tools/perf/builtin-trace.c
4970
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 = {};