Searched refs:thread_map (Results 1 – 21 of 21) sorted by relevance
/external/linux-tools-perf/src/tools/perf/util/ |
D | thread_map.h | 7 struct thread_map { struct 12 struct thread_map *thread_map__new_by_pid(pid_t pid); argument 13 struct thread_map *thread_map__new_by_tid(pid_t tid); 14 struct thread_map *thread_map__new_by_uid(uid_t uid); 15 struct thread_map *thread_map__new(pid_t pid, pid_t tid, uid_t uid); 17 struct thread_map *thread_map__new_str(const char *pid, 20 void thread_map__delete(struct thread_map *threads); 22 size_t thread_map__fprintf(struct thread_map *threads, FILE *fp); 24 static inline int thread_map__nr(struct thread_map *threads) in thread_map__nr()
|
D | thread_map.c | 22 struct thread_map *thread_map__new_by_pid(pid_t pid) in thread_map__new_by_pid() 24 struct thread_map *threads; in thread_map__new_by_pid() 49 struct thread_map *thread_map__new_by_tid(pid_t tid) in thread_map__new_by_tid() 51 struct thread_map *threads = malloc(sizeof(*threads) + sizeof(pid_t)); in thread_map__new_by_tid() 61 struct thread_map *thread_map__new_by_uid(uid_t uid) in thread_map__new_by_uid() 67 struct thread_map *threads = malloc(sizeof(*threads) + in thread_map__new_by_uid() 106 struct thread_map *tmp; in thread_map__new_by_uid() 146 struct thread_map *thread_map__new(pid_t pid, pid_t tid, uid_t uid) in thread_map__new() 157 static struct thread_map *thread_map__new_by_pid_str(const char *pid_str) in thread_map__new_by_pid_str() 159 struct thread_map *threads = NULL, *nt; in thread_map__new_by_pid_str() [all …]
|
D | evlist.h | 13 struct thread_map; 45 struct thread_map *threads; 57 struct thread_map *threads); 125 struct thread_map *threads) in perf_evlist__set_maps()
|
D | evsel.h | 98 struct thread_map; 166 struct thread_map *threads); 168 struct thread_map *threads);
|
D | python-ext-sources | 14 util/thread_map.c
|
D | event.h | 190 struct thread_map; 198 struct thread_map *threads,
|
D | python.c | 442 struct thread_map *threads; 630 struct thread_map *threads = NULL; in pyrf_evsel__open() 699 struct thread_map *threads; in pyrf_evlist__init()
|
D | evsel.c | 1003 struct thread_map *threads) in __perf_evsel__open() 1128 struct thread_map map; 1136 struct thread_map *threads) in perf_evsel__open() 1156 struct thread_map *threads) in perf_evsel__open_per_thread()
|
D | evlist.c | 31 struct thread_map *threads) in perf_evlist__init() 702 const struct thread_map *threads = evlist->threads; in perf_evlist__mmap()
|
D | event.c | 320 struct thread_map *threads, in perf_event__synthesize_thread_map()
|
D | parse-events.c | 1091 struct thread_map map; in is_event_supported()
|
/external/linux-tools-perf/src/tools/perf/python/ |
D | twatch.py | 20 threads = perf.thread_map()
|
/external/linux-tools-perf/src/tools/perf/tests/ |
D | open-syscall.c | 11 struct thread_map *threads = thread_map__new(-1, getpid(), UINT_MAX); in test__open_syscall_event()
|
D | open-syscall-all-cpus.c | 14 struct thread_map *threads = thread_map__new(-1, getpid(), UINT_MAX); in test__open_syscall_event_on_all_cpus()
|
D | keep-tracking.c | 63 struct thread_map *threads = NULL; in test__keep_tracking()
|
D | mmap-basic.c | 22 struct thread_map *threads; in test__basic_mmap()
|
D | perf-time-to-tsc.c | 59 struct thread_map *threads = NULL; in test__perf_time_to_tsc()
|
D | code-reading.c | 395 struct thread_map *threads = NULL; in do_test_code_reading()
|
/external/linux-tools-perf/src/tools/perf/ |
D | Android.mk | 151 util/thread_map.c \
|
D | Makefile | 274 LIB_H += util/thread_map.h 341 LIB_OBJS += $(OUTPUT)util/thread_map.o
|
/external/v8/tools/ |
D | grokdump.py | 538 self.thread_map = {} 577 self.thread_map[thread.id] = thread 1628 exception_thread = self.reader.thread_map[self.reader.exception.thread_id] 2083 exception_thread = self.reader.thread_map[self.reader.exception.thread_id] 2155 exception_thread = self.reader.thread_map[self.reader.exception.thread_id] 2234 exception_thread = self.reader.thread_map[self.reader.exception.thread_id] 3038 exception_thread = reader.thread_map[reader.exception.thread_id]
|