Home
last modified time | relevance | path

Searched refs:group_fd (Results 1 – 24 of 24) sorted by relevance

/linux-4.4.14/tools/testing/selftests/powerpc/pmu/ebb/
Dmulti_counter_test.c19 int i, group_fd; in multi_counter() local
34 group_fd = -1; in multi_counter()
40 FAIL_IF(event_open_with_group(&events[i], group_fd)); in multi_counter()
41 if (group_fd == -1) in multi_counter()
42 group_fd = events[0].fd; in multi_counter()
/linux-4.4.14/tools/testing/selftests/powerpc/pmu/
Devent.c17 int group_fd, unsigned long flags) in perf_event_open() argument
20 group_fd, flags); in perf_event_open()
52 int event_open_with_options(struct event *e, pid_t pid, int cpu, int group_fd) in event_open_with_options() argument
54 e->fd = perf_event_open(&e->attr, pid, cpu, group_fd, 0); in event_open_with_options()
63 int event_open_with_group(struct event *e, int group_fd) in event_open_with_group() argument
65 return event_open_with_options(e, PERF_CURRENT_PID, PERF_NO_CPU, group_fd); in event_open_with_group()
Devent.h30 int event_open_with_options(struct event *e, pid_t pid, int cpu, int group_fd);
31 int event_open_with_group(struct event *e, int group_fd);
/linux-4.4.14/tools/perf/tests/
Dattr.c61 int fd, int group_fd, unsigned long flags) in store_event() argument
84 __WRITE_ASS(group_fd, "d", group_fd); in store_event()
131 int fd, int group_fd, unsigned long flags) in test_attr__open() argument
135 if (store_event(attr, pid, cpu, fd, group_fd, flags)) in test_attr__open()
Dattr.py227 group_fd = event['group_fd'];
228 if group_fd == '-1':
232 if (ievent['fd'] == group_fd):
/linux-4.4.14/tools/perf/
Dperf-sys.h104 pid_t pid, int cpu, int group_fd, in sys_perf_event_open() argument
110 group_fd, flags); in sys_perf_event_open()
114 test_attr__open(attr, pid, cpu, fd, group_fd, flags); in sys_perf_event_open()
Dperf.h12 int fd, int group_fd, unsigned long flags);
Ddesign.txt25 pid_t pid, int cpu, int group_fd,
261 The 'group_fd' parameter allows counter "groups" to be set up. A
263 is created first, with group_fd = -1 in the sys_perf_event_open call
265 subsequently, with group_fd giving the fd of the group leader.
266 (A single counter on its own is created with group_fd = -1 and is
/linux-4.4.14/tools/perf/tests/attr/
Dtest-stat-group18 group_fd=-1
12 group_fd=1
Dtest-stat-group8 group_fd=-1
12 group_fd=1
Dtest-record-group7 group_fd=-1
13 group_fd=1
Dtest-record-group17 group_fd=-1
13 group_fd=1
Dtest-record-group-sampling7 group_fd=-1
14 group_fd=1
Dbase-stat3 group_fd=-1
Dbase-record3 group_fd=-1
DREADME23 store 'fd' and 'group_fd' values to allow checking for groups.
/linux-4.4.14/samples/bpf/
Dlibbpf.c150 int group_fd, unsigned long flags) in perf_event_open() argument
153 group_fd, flags); in perf_event_open()
Dlibbpf.h200 int group_fd, unsigned long flags);
/linux-4.4.14/tools/perf/Documentation/
Dintel-pt.txt207 sys_perf_event_open: pid 31104 cpu 0 group_fd -1 flags 0x8
208 sys_perf_event_open: pid 31104 cpu 1 group_fd -1 flags 0x8
209 sys_perf_event_open: pid 31104 cpu 2 group_fd -1 flags 0x8
210 sys_perf_event_open: pid 31104 cpu 3 group_fd -1 flags 0x8
586 sys_perf_event_open: pid 31104 cpu 0 group_fd -1 flags 0x8
587 sys_perf_event_open: pid 31104 cpu 1 group_fd -1 flags 0x8
588 sys_perf_event_open: pid 31104 cpu 2 group_fd -1 flags 0x8
589 sys_perf_event_open: pid 31104 cpu 3 group_fd -1 flags 0x8
602 sys_perf_event_open: pid -1 cpu 0 group_fd -1 flags 0x8
603 sys_perf_event_open: pid -1 cpu 1 group_fd -1 flags 0x8
[all …]
/linux-4.4.14/tools/perf/util/
Devsel.c1340 int group_fd; in __perf_evsel__open() local
1345 group_fd = get_group_fd(evsel, cpu, thread); in __perf_evsel__open()
1348 pid, cpus->map[cpu], group_fd, flags); in __perf_evsel__open()
1353 group_fd, flags); in __perf_evsel__open()
Dpython.c1131 int fd, int group_fd, unsigned long flags) in test_attr__open() argument
/linux-4.4.14/arch/s390/kernel/
Dcompat_wrapper.c157 … struct perf_event_attr __user *, attr_uptr, pid_t, pid, int, cpu, int, group_fd, unsigned long, f…
/linux-4.4.14/include/linux/
Dsyscalls.h849 pid_t pid, int cpu, int group_fd, unsigned long flags);
/linux-4.4.14/kernel/events/
Dcore.c8242 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags) in SYSCALL_DEFINE5() argument
8295 if (group_fd != -1) { in SYSCALL_DEFINE5()
8296 err = perf_fget_light(group_fd, &group); in SYSCALL_DEFINE5()