Home
last modified time | relevance | path

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

/tools/perf/util/
Dcomm.h15 bool exec; member
23 struct comm *comm__new(const char *str, u64 timestamp, bool exec);
26 bool exec);
Dcomm.c108 struct comm *comm__new(const char *str, u64 timestamp, bool exec) in comm__new() argument
116 comm->exec = exec; in comm__new()
127 int comm__override(struct comm *comm, const char *str, u64 timestamp, bool exec) in comm__override() argument
138 if (exec) in comm__override()
139 comm->exec = true; in comm__override()
Dthread.c219 if (comm->exec) in thread__exec_comm()
238 u64 timestamp, bool exec) in ____thread__set_comm() argument
244 int err = comm__override(curr, str, timestamp, exec); in ____thread__set_comm()
248 new = comm__new(str, timestamp, exec); in ____thread__set_comm()
253 if (exec) in ____thread__set_comm()
263 bool exec) in __thread__set_comm() argument
268 ret = ____thread__set_comm(thread, str, timestamp, exec); in __thread__set_comm()
Dthread.h80 bool exec);
Dprobe-event.c182 static int convert_exec_to_group(const char *exec, char **result) in convert_exec_to_group() argument
188 exec_copy = strdup(exec); in convert_exec_to_group()
528 static int get_text_start_address(const char *exec, unsigned long *address, in get_text_start_address() argument
538 fd = open(exec, O_RDONLY); in get_text_start_address()
677 int ntevs, const char *exec, in add_exec_to_probe_trace_events() argument
683 if (!exec) in add_exec_to_probe_trace_events()
686 ret = get_text_start_address(exec, &stext, nsi); in add_exec_to_probe_trace_events()
693 tevs[i].point.module = strdup(exec); in add_exec_to_probe_trace_events()
Dmachine.c602 bool exec = event->header.misc & PERF_RECORD_MISC_COMM_EXEC; in machine__process_comm_event() local
605 if (exec) in machine__process_comm_event()
612 __thread__set_comm(thread, event->comm.comm, sample->time, exec)) { in machine__process_comm_event()
/tools/lib/subcmd/
DBuild1 libsubcmd-y += exec-cmd.o
/tools/perf/tests/attr/
Dtest-record-C09 # no enable on exec for CPU attached
/tools/testing/selftests/powerpc/tm/
D.gitignore9 tm-exec
/tools/perf/Documentation/
Dperf-probe.txt99 Show available functions in given module or kernel. With -x/--exec,
139 --exec=PATH::
/tools/usb/usbip/
DINSTALL113 pass the option `--exec-prefix=PREFIX' to `configure', the package uses
/tools/perf/util/scripting-engines/
Dtrace-event-python.c1027 tuple_set_s32(t, 4, comm->exec); in python_export_comm()