Home | History | Annotate | Download | only in installd

Lines Matching full:fdfd

466         int fdfd = openat(ddfd, name, O_WRONLY | O_NOFOLLOW | O_CLOEXEC | O_CREAT, 0600);
467 if (fsfd == -1 || fdfd == -1) {
470 if (_copy_owner_permissions(fsfd, fdfd) != 0) {
473 if (fchown(fdfd, owner, group) != 0) {
480 write(fdfd, buf, size);
487 close(fdfd);