Home
last modified time | relevance | path

Searched refs:PERF_FLAG_FD_CLOEXEC (Results 1 – 20 of 20) sorted by relevance

/external/strace/xlat/
Dperf_event_open_flags.h27 #if defined(PERF_FLAG_FD_CLOEXEC) || (defined(HAVE_DECL_PERF_FLAG_FD_CLOEXEC) && HAVE_DECL_PERF_FLA…
29 static_assert((PERF_FLAG_FD_CLOEXEC) == (8), "PERF_FLAG_FD_CLOEXEC != 8");
32 # define PERF_FLAG_FD_CLOEXEC 8
48 XLAT(PERF_FLAG_FD_CLOEXEC),
Dperf_event_open_flags.in4 PERF_FLAG_FD_CLOEXEC 8
/external/strace/tests-mx32/
Dperf_event_open_nonverbose.c88 PERF_FLAG_FD_CLOEXEC, "PERF_FLAG_FD_CLOEXEC" }, in main()
91 PERF_FLAG_PID_CGROUP | PERF_FLAG_FD_CLOEXEC, in main()
Dperf_event_open.c715 PERF_FLAG_PID_CGROUP | PERF_FLAG_FD_CLOEXEC, in main()
720 PERF_FLAG_FD_CLOEXEC, "PERF_FLAG_FD_CLOEXEC" }, in main()
/external/strace/tests-m32/
Dperf_event_open_nonverbose.c88 PERF_FLAG_FD_CLOEXEC, "PERF_FLAG_FD_CLOEXEC" }, in main()
91 PERF_FLAG_PID_CGROUP | PERF_FLAG_FD_CLOEXEC, in main()
Dperf_event_open.c715 PERF_FLAG_PID_CGROUP | PERF_FLAG_FD_CLOEXEC, in main()
720 PERF_FLAG_FD_CLOEXEC, "PERF_FLAG_FD_CLOEXEC" }, in main()
/external/strace/tests/
Dperf_event_open_nonverbose.c88 PERF_FLAG_FD_CLOEXEC, "PERF_FLAG_FD_CLOEXEC" }, in main()
91 PERF_FLAG_PID_CGROUP | PERF_FLAG_FD_CLOEXEC, in main()
Dperf_event_open.c715 PERF_FLAG_PID_CGROUP | PERF_FLAG_FD_CLOEXEC, in main()
720 PERF_FLAG_FD_CLOEXEC, "PERF_FLAG_FD_CLOEXEC" }, in main()
/external/bcc/src/python/bcc/
Dperf.py62 PERF_FLAG_FD_CLOEXEC = 8 variable in Perf
75 Perf.PERF_FLAG_FD_CLOEXEC)
/external/bcc/src/cc/
Dlibbpf.c76 #ifndef PERF_FLAG_FD_CLOEXEC
77 #define PERF_FLAG_FD_CLOEXEC (1UL << 3) macro
761 PERF_FLAG_FD_CLOEXEC); in bpf_try_perf_event_open_with_probe()
808 *pfd = syscall(__NR_perf_event_open, &attr, pid, cpu, -1 /* group_fd */, PERF_FLAG_FD_CLOEXEC); in bpf_attach_tracing_event()
1137 pfd = syscall(__NR_perf_event_open, &attr, pid, cpu, -1, PERF_FLAG_FD_CLOEXEC); in bpf_open_perf_buffer()
1213 fd = syscall(__NR_perf_event_open, &attr, pid, cpu, -1, PERF_FLAG_FD_CLOEXEC); in bpf_open_perf_event()
1352 PERF_FLAG_FD_CLOEXEC | extra_flags); in bpf_attach_perf_event_raw()
/external/honggfuzz/linux/
Dperf.c171 #if !defined(PERF_FLAG_FD_CLOEXEC) in arch_perfCreate()
172 #define PERF_FLAG_FD_CLOEXEC 0 in arch_perfCreate() macro
174 *perfFd = perf_event_open(&pe, pid, -1, -1, PERF_FLAG_FD_CLOEXEC); in arch_perfCreate()
/external/syzkaller/sys/linux/
Dperf.txt25 perf_flags = PERF_FLAG_FD_NO_GROUP, PERF_FLAG_FD_OUTPUT, PERF_FLAG_FD_CLOEXEC
26 …ags_cgroup = PERF_FLAG_FD_NO_GROUP, PERF_FLAG_FD_OUTPUT, PERF_FLAG_PID_CGROUP, PERF_FLAG_FD_CLOEXEC
Dperf_amd64.const18 PERF_FLAG_FD_CLOEXEC = 8
Dperf_386.const18 PERF_FLAG_FD_CLOEXEC = 8
Dperf_ppc64le.const18 PERF_FLAG_FD_CLOEXEC = 8
Dperf_arm64.const18 PERF_FLAG_FD_CLOEXEC = 8
Dperf_arm.const18 PERF_FLAG_FD_CLOEXEC = 8
/external/perf_data_converter/src/quipper/kernel/
Dperf_event.h814 #define PERF_FLAG_FD_CLOEXEC (1UL << 3) /* O_CLOEXEC */ macro
/external/kernel-headers/original/uapi/linux/
Dperf_event.h997 #define PERF_FLAG_FD_CLOEXEC (1UL << 3) /* O_CLOEXEC */ macro
/external/strace/
DChangeLog37096 * xlat/perf_event_open_flags.in: Add PERF_FLAG_FD_CLOEXEC,