Home
last modified time | relevance | path

Searched refs:perf_thread_map (Results 1 – 25 of 43) sorted by relevance

12

/linux-6.3-rc2/tools/perf/util/
A Dthread_map.h11 struct perf_thread_map *thread_map__new_dummy(void);
12 struct perf_thread_map *thread_map__new_by_pid(pid_t pid);
13 struct perf_thread_map *thread_map__new_by_tid(pid_t tid);
14 struct perf_thread_map *thread_map__new_by_uid(uid_t uid);
15 struct perf_thread_map *thread_map__new_all_cpus(void);
16 struct perf_thread_map *thread_map__new(pid_t pid, pid_t tid, uid_t uid);
19 struct perf_thread_map *thread_map__new_str(const char *pid,
24 size_t thread_map__fprintf(struct perf_thread_map *threads, FILE *fp);
26 void thread_map__read_comms(struct perf_thread_map *threads);
27 bool thread_map__has(struct perf_thread_map *threads, pid_t pid);
[all …]
A Dthread_map.c34 struct perf_thread_map *thread_map__new_by_pid(pid_t pid) in thread_map__new_by_pid()
36 struct perf_thread_map *threads; in thread_map__new_by_pid()
62 struct perf_thread_map *thread_map__new_by_tid(pid_t tid) in thread_map__new_by_tid()
64 struct perf_thread_map *threads = thread_map__alloc(1); in thread_map__new_by_tid()
121 struct perf_thread_map *tmp; in __thread_map__new_all_cpus()
161 struct perf_thread_map *thread_map__new_all_cpus(void) in thread_map__new_all_cpus()
166 struct perf_thread_map *thread_map__new_by_uid(uid_t uid) in thread_map__new_by_uid()
184 struct perf_thread_map *threads = NULL, *nt; in thread_map__new_by_pid_str()
246 struct perf_thread_map *threads = NULL, *nt; in thread_map__new_by_tid_str()
343 static void comm_init(struct perf_thread_map *map, int i) in comm_init()
[all …]
A Dsynthetic-events.h24 struct perf_thread_map;
70 int perf_event__synthesize_thread_map2(struct perf_tool *tool, struct perf_thread_map *threads, per…
71 int perf_event__synthesize_thread_map(struct perf_tool *tool, struct perf_thread_map *threads, perf…
82 struct target *target, struct perf_thread_map *threads,
86 struct perf_thread_map *threads, bool needs_mmap, bool data_mmap,
A Devsel.h317 int evsel__open_per_thread(struct evsel *evsel, struct perf_thread_map *threads);
319 struct perf_thread_map *threads);
322 struct perf_thread_map *threads);
/linux-6.3-rc2/tools/lib/perf/include/perf/
A Dthreadmap.h8 struct perf_thread_map;
10 LIBPERF_API struct perf_thread_map *perf_thread_map__new_dummy(void);
11 LIBPERF_API struct perf_thread_map *perf_thread_map__new_array(int nr_threads, pid_t *array);
13 LIBPERF_API void perf_thread_map__set_pid(struct perf_thread_map *map, int idx, pid_t pid);
14 LIBPERF_API char *perf_thread_map__comm(struct perf_thread_map *map, int idx);
15 LIBPERF_API int perf_thread_map__nr(struct perf_thread_map *threads);
16 LIBPERF_API pid_t perf_thread_map__pid(struct perf_thread_map *map, int idx);
18 LIBPERF_API struct perf_thread_map *perf_thread_map__get(struct perf_thread_map *map);
19 LIBPERF_API void perf_thread_map__put(struct perf_thread_map *map);
A Devsel.h13 struct perf_thread_map;
31 struct perf_thread_map *threads);
45 LIBPERF_API struct perf_thread_map *perf_evsel__threads(struct perf_evsel *evsel);
A Devlist.h11 struct perf_thread_map;
33 struct perf_thread_map *threads);
/linux-6.3-rc2/tools/lib/perf/
A Dthreadmap.c10 static void perf_thread_map__reset(struct perf_thread_map *map, int start, int nr) in perf_thread_map__reset()
18 struct perf_thread_map *perf_thread_map__realloc(struct perf_thread_map *map, int nr) in perf_thread_map__realloc()
35 void perf_thread_map__set_pid(struct perf_thread_map *map, int idx, pid_t pid) in perf_thread_map__set_pid()
40 char *perf_thread_map__comm(struct perf_thread_map *map, int idx) in perf_thread_map__comm()
47 struct perf_thread_map *threads = thread_map__alloc(nr_threads); in perf_thread_map__new_array()
62 struct perf_thread_map *perf_thread_map__new_dummy(void) in perf_thread_map__new_dummy()
67 static void perf_thread_map__delete(struct perf_thread_map *threads) in perf_thread_map__delete()
80 struct perf_thread_map *perf_thread_map__get(struct perf_thread_map *map) in perf_thread_map__get()
87 void perf_thread_map__put(struct perf_thread_map *map) in perf_thread_map__put()
93 int perf_thread_map__nr(struct perf_thread_map *threads) in perf_thread_map__nr()
[all …]
A Devsel.c114 struct perf_thread_map *threads) in perf_evsel__open()
132 static struct perf_thread_map *empty_thread_map; in perf_evsel__open()
503 struct perf_thread_map *perf_evsel__threads(struct perf_evsel *evsel) in perf_evsel__threads()
/linux-6.3-rc2/tools/lib/perf/Documentation/
A Dlibperf.txt62 struct perf_thread_map;
64 struct perf_thread_map *perf_thread_map__new_dummy(void);
68 char *perf_thread_map__comm(struct perf_thread_map *map, int idx);
69 int perf_thread_map__nr(struct perf_thread_map *threads);
70 pid_t perf_thread_map__pid(struct perf_thread_map *map, int idx);
72 struct perf_thread_map *perf_thread_map__get(struct perf_thread_map *map);
73 void perf_thread_map__put(struct perf_thread_map *map);
101 struct perf_thread_map *threads);
138 struct perf_thread_map *threads);
151 struct perf_thread_map *perf_evsel__threads(struct perf_evsel *evsel);
[all …]
/linux-6.3-rc2/tools/lib/perf/include/internal/
A Dthreadmap.h14 struct perf_thread_map { struct
21 struct perf_thread_map *perf_thread_map__realloc(struct perf_thread_map *map, int nr); argument
A Devsel.h11 struct perf_thread_map;
46 struct perf_thread_map *threads;
A Devlist.h14 struct perf_thread_map;
30 struct perf_thread_map *threads;
/linux-6.3-rc2/tools/perf/tests/
A Dthread-map.c25 struct perf_thread_map *map; in test__thread_map()
69 struct perf_thread_map *threads; in process_event()
92 struct perf_thread_map *threads; in test__thread_map_synthesize()
112 struct perf_thread_map *threads; in test__thread_map_remove()
A Devent-times.c62 struct perf_thread_map *threads; in attach__current_disabled()
88 struct perf_thread_map *threads; in attach__current_enabled()
A Dmmap-basic.c36 struct perf_thread_map *threads; in test__basic_mmap()
175 struct perf_thread_map *threads; in test_stat_user_read()
A Dopenat-syscall.c23 struct perf_thread_map *threads = thread_map__new(-1, getpid(), UINT_MAX); in test__openat_syscall_event()
A Dopenat-syscall-all-cpus.c31 struct perf_thread_map *threads = thread_map__new(-1, getpid(), UINT_MAX); in test__openat_syscall_event_on_all_cpus()
A Dsw-clock.c47 struct perf_thread_map *threads = NULL; in __test__sw_clock_freq()
A Dtask-exit.c55 struct perf_thread_map *threads; in test__task_exit()
/linux-6.3-rc2/tools/lib/perf/tests/
A Dtest-evsel.c56 struct perf_thread_map *threads; in test_stat_thread()
88 struct perf_thread_map *threads; in test_stat_thread_enable()
130 struct perf_thread_map *threads; in test_stat_user_read()
195 static int test_stat_read_format_single(struct perf_event_attr *attr, struct perf_thread_map *threa… in test_stat_read_format_single()
230 static int test_stat_read_format_group(struct perf_event_attr *attr, struct perf_thread_map *thread… in test_stat_read_format_group()
293 struct perf_thread_map *threads; in test_stat_read_format()
A Dtest-threadmap.c16 struct perf_thread_map *threads; in test_threadmap_array()
48 struct perf_thread_map *threads; in test_threadmap()
A Dtest-evlist.c95 struct perf_thread_map *threads; in test_stat_thread()
150 struct perf_thread_map *threads; in test_stat_thread_enable()
219 struct perf_thread_map *threads; in test_mmap_thread()
443 struct perf_thread_map *threads; in test_stat_multiplexing()
/linux-6.3-rc2/tools/perf/bench/
A Dsynthesize.c62 struct perf_thread_map *threads, in do_run_single_threaded()
116 struct perf_thread_map *threads; in run_single_threaded()
/linux-6.3-rc2/tools/lib/perf/Documentation/examples/
A Dcounting.c23 struct perf_thread_map *threads; in main()

Completed in 23 milliseconds

12