Lines Matching defs:in_fd
9929 in_fd: int
9936 Copy count bytes from file descriptor in_fd to file descriptor out_fd.
9940 os_sendfile_impl(PyObject *module, int out_fd, int in_fd, Py_off_t offset,
9949 in_fd: int
9956 Copy count bytes from file descriptor in_fd to file descriptor out_fd.
9960 os_sendfile_impl(PyObject *module, int out_fd, int in_fd, Py_off_t offset,
9969 in_fd: int
9973 Copy count bytes from file descriptor in_fd to file descriptor out_fd.
9977 os_sendfile_impl(PyObject *module, int out_fd, int in_fd, PyObject *offobj,
10056 ret = sendfile(in_fd, out_fd, offset, &sbytes, &sf, flags);
10058 ret = sendfile(in_fd, out_fd, offset, count, &sf, &sbytes, flags);
10097 ret = sendfile(out_fd, in_fd, NULL, count);
10111 // when the offset is equal or bigger than the in_fd size.
10116 ret = fstat(in_fd, &st);
10137 ret = sendfile(out_fd, in_fd, &offset, count);
10159 in_fd: int
10168 os__fcopyfile_impl(PyObject *module, int in_fd, int out_fd, int flags)
10174 ret = fcopyfile(in_fd, out_fd, NULL, flags);