Lines Matching defs:in_fd
752 int in_fd;
757 in_fd = req->flags;
794 nread = pread(in_fd, buf, buflen, offset);
796 nread = read(in_fd, buf, buflen);
891 static ssize_t uv__fs_try_copy_file_range(int in_fd, off_t* off,
901 r = uv__fs_copy_file_range(in_fd, off, out_fd, NULL, len, 0);
911 if (uv__is_buggy_cephfs(in_fd))
927 * EXDEV - it will not work when in_fd and out_fd are not on the same
941 int in_fd;
944 in_fd = req->flags;
959 r = uv__fs_try_copy_file_range(in_fd, &off, out_fd, len);
964 r = sendfile(out_fd, in_fd, &off, len);
1001 r = uv__fs_copy_file_range(in_fd, &off, out_fd, NULL, req->bufsml[0].len, 0);
1009 r = sendfile(in_fd, out_fd, req->off, req->bufsml[0].len, NULL, &len, 0);
1014 r = sendfile(in_fd, out_fd, req->off, &len, NULL, 0);
1041 (void) &in_fd;
2030 uv_file in_fd,
2035 req->flags = in_fd; /* hack */