Lines Matching defs:in_fd
805 int in_fd;
810 in_fd = req->flags;
847 nread = pread(in_fd, buf, buflen, offset);
849 nread = read(in_fd, buf, buflen);
969 static ssize_t uv__fs_try_copy_file_range(int in_fd, off_t* off,
979 r = uv__fs_copy_file_range(in_fd, off, out_fd, NULL, len, 0);
989 if (uv__is_buggy_cephfs(in_fd))
1005 * EXDEV - it will not work when in_fd and out_fd are not on the same
1019 int in_fd;
1022 in_fd = req->flags;
1037 r = uv__fs_try_copy_file_range(in_fd, &off, out_fd, len);
1042 r = sendfile(out_fd, in_fd, &off, len);
1082 r = uv__fs_copy_file_range(in_fd, &off, out_fd, NULL, req->bufsml[0].len, 0);
1090 r = sendfile(in_fd, out_fd, req->off, req->bufsml[0].len, NULL, &len, 0);
1093 r = bsd_sendfile(in_fd,
1104 r = sendfile(in_fd, out_fd, req->off, &len, NULL, 0);
1131 (void) &in_fd;
2112 uv_file in_fd,
2117 req->flags = in_fd; /* hack */