Home
last modified time | relevance | path

Searched refs:dst_fd (Results 1 – 3 of 3) sorted by relevance

/tools/objtool/
A Dbuiltin-check.c191 int dst_fd, src_fd; in copy_file() local
201 dst_fd = open(dst, O_WRONLY | O_CREAT | O_TRUNC, 0400); in copy_file()
202 if (dst_fd == -1) { in copy_file()
212 if (fchmod(dst_fd, stat.st_mode) == -1) { in copy_file()
218 copied = sendfile(dst_fd, src_fd, &offset, to_copy); in copy_file()
225 close(dst_fd); in copy_file()
/tools/testing/selftests/bpf/prog_tests/
A Dsockmap_basic.c63 int err, src_fd, dst_fd; in compare_cookies() local
66 dst_fd = bpf_map__fd(dst); in compare_cookies()
73 err = bpf_map_lookup_elem(dst_fd, &i, &dst_cookie); in compare_cookies()
81 err = bpf_map_lookup_elem(dst_fd, &i, &dst_cookie); in compare_cookies()
/tools/testing/selftests/landlock/
A Dfs_test.c2022 int dst_fd, src_fd; in copy_file() local
2025 dst_fd = open(dst_path, O_WRONLY | O_TRUNC | O_CLOEXEC); in copy_file()
2026 ASSERT_LE(0, dst_fd) in copy_file()
2037 sendfile(dst_fd, src_fd, 0, statbuf.st_size)); in copy_file()
2039 ASSERT_EQ(0, close(dst_fd)); in copy_file()

Completed in 14 milliseconds