Home
last modified time | relevance | path

Searched refs:PERF_FLAG_FD_CLOEXEC (Results 1 – 14 of 14) 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-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-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/
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/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/bcc/src/cc/
Dlibbpf.c76 #ifndef PERF_FLAG_FD_CLOEXEC
77 #define PERF_FLAG_FD_CLOEXEC (1UL << 3) macro
773 PERF_FLAG_FD_CLOEXEC); in bpf_try_perf_event_open_with_probe()
820 *pfd = syscall(__NR_perf_event_open, &attr, pid, cpu, -1 /* group_fd */, PERF_FLAG_FD_CLOEXEC); in bpf_attach_tracing_event()
1187 pfd = syscall(__NR_perf_event_open, &attr, pid, cpu, -1, PERF_FLAG_FD_CLOEXEC); in bpf_open_perf_buffer()
1263 fd = syscall(__NR_perf_event_open, &attr, pid, cpu, -1, PERF_FLAG_FD_CLOEXEC); in bpf_open_perf_event()
1402 PERF_FLAG_FD_CLOEXEC | extra_flags); in bpf_attach_perf_event_raw()
/external/perfetto/src/profiling/perf/
Devent_reader.cc56 /*group_fd=*/-1, PERF_FLAG_FD_CLOEXEC)}; in PerfEventOpen()
/external/kernel-headers/original/uapi/linux/
Dperf_event.h1053 #define PERF_FLAG_FD_CLOEXEC (1UL << 3) /* O_CLOEXEC */ macro
/external/strace/
DChangeLog37096 * xlat/perf_event_open_flags.in: Add PERF_FLAG_FD_CLOEXEC,