Home
last modified time | relevance | path

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

/linux/tools/perf/
H A Dbuiltin-trace.c1584 struct thread_trace *ttrace = zalloc(sizeof(struct thread_trace)); in thread_trace__new() local
1586 if (ttrace) { in thread_trace__new()
1587 ttrace->files.max = -1; in thread_trace__new()
1589 ttrace->syscall_stats = alloc_syscall_stats(); in thread_trace__new()
1590 if (!ttrace->syscall_stats) in thread_trace__new()
1591 zfree(&ttrace); in thread_trace__new()
1595 return ttrace; in thread_trace__new()
1598 static void thread_trace__free_files(struct thread_trace *ttrace);
1602 struct thread_trace *ttrace = pttrace; in thread_trace__delete() local
1604 if (!ttrace) in thread_trace__delete()
[all …]