Lines Matching defs:fdout
128 int fdout = -1, cfd = try->parent ? try->parent->extra : AT_FDCWD,
138 fdout = try->extra;
241 fdout = AT_FDCWD;
259 fdout = AT_FDCWD;
273 fdout = openat(cfd, catch, O_RDWR|O_CREAT|O_TRUNC, try->st.st_mode);
274 if (fdout >= 0) {
275 xsendfile(fdin, fdout);
294 if (xattr_fset(fdout, name, value, len, 0))
309 if (fdout != -1) {
319 if (fdout == AT_FDCWD)
322 else rc = fchown(fdout, try->st.st_uid, try->st.st_gid);
335 if (fdout == AT_FDCWD) utimensat(cfd, catch, times, AT_SYMLINK_NOFOLLOW);
336 else futimens(fdout, times);
340 if (fdout != AT_FDCWD) {
341 if (TT.pflags & _CP_mode) fchmod(fdout, try->st.st_mode);
342 xclose(fdout);