Home
last modified time | relevance | path

Searched refs:src_fd (Results 1 – 12 of 12) sorted by relevance

/linux/fs/hfsplus/
H A Dcatalog.c439 struct hfs_find_data src_fd, dst_fd; in hfsplus_rename_cat() local
447 err = hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &src_fd); in hfsplus_rename_cat()
450 dst_fd = src_fd; in hfsplus_rename_cat()
456 err = hfs_bmap_reserve(src_fd.tree, 4 * (int)src_fd.tree->depth - 1); in hfsplus_rename_cat()
461 err = hfsplus_cat_build_key(sb, src_fd.search_key, in hfsplus_rename_cat()
466 err = hfs_brec_find(&src_fd, hfs_find_rec_by_key); in hfsplus_rename_cat()
469 if (src_fd.entrylength > sizeof(entry) || src_fd.entrylength < 0) { in hfsplus_rename_cat()
474 hfs_bnode_read(src_fd.bnode, &entry, src_fd.entryoffset, in hfsplus_rename_cat()
475 src_fd.entrylength); in hfsplus_rename_cat()
491 err = hfs_brec_insert(&dst_fd, &entry, src_fd.entrylength); in hfsplus_rename_cat()
[all …]
/linux/tools/objtool/
H A Dbuiltin-check.c213 int dst_fd, src_fd; in copy_file()
217 src_fd = open(src, O_RDONLY); in copy_file()
218 if (src_fd == -1) { in copy_file()
229 if (fstat(src_fd, &stat) == -1) { in copy_file()
240 copied = sendfile(dst_fd, src_fd, &offset, to_copy); in save_argv()
248 close(src_fd);
193 int dst_fd, src_fd; copy_file() local
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dtc_redirect.c1117 static int tun_relay_loop(int src_fd, int target_fd) in tun_relay_loop()
1128 FD_SET(src_fd, &rfds); in tun_relay_loop()
1131 if (select(1 + MAX(src_fd, target_fd), &rfds, NULL, NULL, NULL) < 0) { in tun_relay_loop()
1136 direction = FD_ISSET(src_fd, &rfds) ? SRC_TO_TARGET : TARGET_TO_SRC; in tun_relay_loop()
1138 nread = read(direction == SRC_TO_TARGET ? src_fd : target_fd, buf, sizeof(buf)); in tun_relay_loop()
1144 nwrite = write(direction == SRC_TO_TARGET ? target_fd : src_fd, buf, nread); in tun_relay_loop()
1160 int src_fd, target_fd = -1; in test_tc_redirect_peer_l3()
1174 src_fd = tun_open("tun_src"); in test_tc_redirect_peer_l3()
1175 if (!ASSERT_GE(src_fd, 0, "tun_open tun_src")) in test_tc_redirect_peer_l3()
1193 exit(tun_relay_loop(src_fd, target_f in test_tc_redirect_peer_l3()
1116 tun_relay_loop(int src_fd,int target_fd) tun_relay_loop() argument
1159 int src_fd, target_fd = -1; test_tc_redirect_peer_l3() local
[all...]
H A Dsockmap_basic.c63 int err, src_fd, dst_fd; in compare_cookies() local
65 src_fd = bpf_map__fd(src); in compare_cookies()
71 err = bpf_map_lookup_elem(src_fd, &i, &src_cookie); in compare_cookies()
286 int err, len, src_fd, iter_fd; in test_sockmap_copy() local
316 src_fd = bpf_map__fd(src); in test_sockmap_copy()
323 err = bpf_map_update_elem(src_fd, &i, &sock_fd[i], BPF_NOEXIST); in test_sockmap_copy()
328 linfo.map.map_fd = src_fd; in test_sockmap_copy()
/linux/tools/include/uapi/linux/
H A Dfs.h64 __s64 src_fd; member
/linux/include/uapi/linux/
H A Dfs.h75 __s64 src_fd; member
H A Dio_uring.h819 __u32 src_fd; member
H A Dbtrfs.h605 __s64 src_fd; member
/linux/tools/perf/trace/beauty/include/uapi/linux/
H A Dfs.h75 __s64 src_fd; member
/linux/fs/
H A Dioctl.c257 return ioctl_file_clone(file, args.src_fd, args.src_offset, in ioctl_file_clone_range()
/linux/tools/testing/selftests/landlock/
H A Dfs_test.c2022 int dst_fd, src_fd; in copy_file() local
2030 src_fd = open(src_path, O_RDONLY | O_CLOEXEC); in copy_file()
2031 ASSERT_LE(0, src_fd) in copy_file()
2035 ASSERT_EQ(0, fstat(src_fd, &statbuf)); in copy_file()
2037 sendfile(dst_fd, src_fd, 0, statbuf.st_size)); in copy_file()
2038 ASSERT_EQ(0, close(src_fd)); in copy_file()
/linux/io_uring/
H A Drsrc.c1272 * is given in the src_fd to the current ring. This is identical to registering
1295 file = io_uring_register_get_file(buf.src_fd, registered_src); in io_register_clone_buffers()