Home
last modified time | relevance | path

Searched refs:exec (Results 1 – 21 of 21) 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.c221 if (comm->exec) in thread__exec_comm()
240 u64 timestamp, bool exec) in ____thread__set_comm() argument
246 int err = comm__override(curr, str, timestamp, exec); in ____thread__set_comm()
250 new = comm__new(str, timestamp, exec); in ____thread__set_comm()
255 if (exec) in ____thread__set_comm()
265 bool exec) in __thread__set_comm() argument
270 ret = ____thread__set_comm(thread, str, timestamp, exec); in __thread__set_comm()
Dthread.h93 bool exec);
Dprobe-event.c192 static int convert_exec_to_group(const char *exec, char **result) in convert_exec_to_group() argument
198 exec_copy = strdup(exec); in convert_exec_to_group()
591 static int get_text_start_address(const char *exec, u64 *address, in get_text_start_address() argument
601 fd = open(exec, O_RDONLY); in get_text_start_address()
744 int ntevs, const char *exec, in add_exec_to_probe_trace_events() argument
750 if (!exec) in add_exec_to_probe_trace_events()
753 ret = get_text_start_address(exec, &stext, nsi); in add_exec_to_probe_trace_events()
760 tevs[i].point.module = strdup(exec); in add_exec_to_probe_trace_events()
Dmachine.c635 bool exec = event->header.misc & PERF_RECORD_MISC_COMM_EXEC; in machine__process_comm_event() local
638 if (exec) in machine__process_comm_event()
645 __thread__set_comm(thread, event->comm.comm, sample->time, exec)) { in machine__process_comm_event()
/tools/testing/selftests/bpf/progs/
Dtest_overhead.c13 int BPF_KPROBE(prog1, struct task_struct *tsk, const char *buf, bool exec) in BPF_KPROBE() argument
31 int BPF_PROG(prog4, struct task_struct *tsk, const char *buf, bool exec) in BPF_PROG() argument
37 int BPF_PROG(prog5, struct task_struct *tsk, const char *buf, bool exec) in BPF_PROG() argument
Dtest_trampoline_count.c11 int BPF_PROG(prog1, struct task_struct *tsk, const char *buf, bool exec) in BPF_PROG() argument
17 int BPF_PROG(prog2, struct task_struct *tsk, const char *buf, bool exec) in BPF_PROG() argument
Dlocal_storage.c158 void BPF_PROG(exec, struct linux_binprm *bprm) in BPF_PROG() argument
/tools/testing/selftests/timens/
D.gitignore3 exec
/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.gitignore10 tm-exec
/tools/perf/Documentation/
Dperf.txt26 --exec-path::
27 Display or set exec path.
Dperf-dlfilter.txt22 directory, or perf tools exec path which is ~/libexec/perf-core/dlfilters for
23 a local build and install (refer perf --exec-path), or the dynamic linker
Dperf-stat.txt239 exec {ctl_fd}<>${ctl_fifo}
244 exec {ctl_fd_ack}<>${ctl_ack_fifo}
254 exec {ctl_fd_ack}>&-
257 exec {ctl_fd}>&-
Dperf-record.txt674 exec {ctl_fd}<>${ctl_fifo}
679 exec {ctl_fd_ack}<>${ctl_ack_fifo}
689 exec {ctl_fd_ack}>&-
692 exec {ctl_fd}>&-
Dperf-probe.txt99 Show available functions in given module or kernel. With -x/--exec,
139 --exec=PATH::
/tools/testing/kunit/test_data/
Dtest_is_test_passed-no_tests_run_no_header.log7 Adding 24743936 bytes to physical memory to account for exec-shield gap
/tools/usb/usbip/
DINSTALL113 pass the option `--exec-prefix=PREFIX' to `configure', the package uses
/tools/perf/util/scripting-engines/
Dtrace-event-python.c1116 tuple_set_s32(t, 4, comm->exec); in python_export_comm()