Lines Matching defs:dirfd
66 int dirfd, file;
77 dirfd = open(dir, O_DIRECTORY);
78 if (dirfd < 0) {
84 if (mkdirat(dirfd, "perf-pmu-test", 0755) < 0) {
88 file = openat(dirfd, "perf-pmu-test/type", O_WRONLY | O_CREAT, 0600);
102 if (mkdirat(dirfd, "perf-pmu-test/format", 0755) < 0) {
113 file = openat(dirfd, name, O_WRONLY | O_CREAT, 0600);
128 if (mkdirat(dirfd, "perf-pmu-test/events", 0755) < 0) {
132 file = openat(dirfd, "perf-pmu-test/events/test-event", O_WRONLY | O_CREAT, 0600);
146 pmu = perf_pmus__add_test_pmu(dirfd, "perf-pmu-test");
153 if (dirfd >= 0)
154 close(dirfd);