Home | History | Annotate | Download | only in installd

Lines Matching full:fdfd

362         int fdfd = openat(ddfd, name, O_WRONLY | O_NOFOLLOW | O_CLOEXEC | O_CREAT, 0600);
363 if (fsfd == -1 || fdfd == -1) {
366 if (_copy_owner_permissions(fsfd, fdfd) != 0) {
369 if (fchown(fdfd, owner, group) != 0) {
376 write(fdfd, buf, size);
383 close(fdfd);