Home
last modified time | relevance | path

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

/Linux-v4.19/tools/perf/trace/beauty/
Dperf_event_open.c14 #ifndef PERF_FLAG_FD_CLOEXEC
15 # define PERF_FLAG_FD_CLOEXEC (1UL << 3) /* O_CLOEXEC */ macro
/Linux-v4.19/tools/perf/util/
Dcloexec.c13 static unsigned long flag = PERF_FLAG_FD_CLOEXEC;
53 PERF_FLAG_FD_CLOEXEC); in perf_flag_probe()
Devsel.c1737 unsigned long flags = PERF_FLAG_FD_CLOEXEC; in perf_evsel__open()
1790 flags &= ~(unsigned long)PERF_FLAG_FD_CLOEXEC; in perf_evsel__open()
1931 } else if (!perf_missing_features.cloexec && (flags & PERF_FLAG_FD_CLOEXEC)) { in perf_evsel__open()
/Linux-v4.19/tools/perf/tests/attr/
Dbase-record4 # 0 or PERF_FLAG_FD_CLOEXEC flag
Dbase-stat4 # 0 or PERF_FLAG_FD_CLOEXEC flag
/Linux-v4.19/samples/bpf/
Dtask_fd_query_user.c256 kfd = sys_perf_event_open(&attr, -1, 0, -1, PERF_FLAG_FD_CLOEXEC); in test_debug_fs_uprobe()
/Linux-v4.19/tools/include/uapi/linux/
Dperf_event.h995 #define PERF_FLAG_FD_CLOEXEC (1UL << 3) /* O_CLOEXEC */ macro
/Linux-v4.19/include/uapi/linux/
Dperf_event.h995 #define PERF_FLAG_FD_CLOEXEC (1UL << 3) /* O_CLOEXEC */ macro
/Linux-v4.19/kernel/events/
Dcore.c349 PERF_FLAG_FD_CLOEXEC)
10449 if (flags & PERF_FLAG_FD_CLOEXEC) in SYSCALL_DEFINE5()