Home | History | Annotate | Download | only in installd

Lines Matching full:fdfd

461         int fdfd = openat(ddfd, name, O_WRONLY | O_NOFOLLOW | O_CLOEXEC | O_CREAT, 0600);
462 if (fsfd == -1 || fdfd == -1) {
465 if (_copy_owner_permissions(fsfd, fdfd) != 0) {
468 if (fchown(fdfd, owner, group) != 0) {
475 write(fdfd, buf, size);
482 close(fdfd);