Searched refs:do_maps_clone (Results 1 – 3 of 3) sorted by relevance
/linux/tools/perf/util/ |
H A D | thread.c | 398 static int thread__clone_maps(struct thread *thread, struct thread *parent, bool do_maps_clone) in thread__clone_maps() argument 411 return do_maps_clone ? maps__copy_from(thread__maps(thread), thread__maps(parent)) : 0; in thread__clone_maps() 414 int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp, bool do_maps_clone) in thread__fork() argument 427 return thread__clone_maps(thread, parent, do_maps_clone); in thread__fork()
|
H A D | thread.h | 113 int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp, bool do_maps_clone);
|
H A D | machine.c | 1869 bool do_maps_clone = true; in machine__process_fork_event() local 1913 do_maps_clone = false; in machine__process_fork_event() 1916 thread__fork(thread, parent, sample->time, do_maps_clone) < 0) { in machine__process_fork_event()
|