Home | History | Annotate | Download | only in installd

Lines Matching refs:sdfd

443 static int _copy_dir_files(int sdfd, int ddfd, uid_t owner, gid_t group)
446 if (_copy_owner_permissions(sdfd, ddfd) != 0) {
453 DIR *ds = fdopendir(sdfd);
465 int fsfd = openat(sdfd, name, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
517 int sdfd = dirfd(ds);
519 if (sdfd != -1 && ddfd != -1) {
520 res = _copy_dir_files(sdfd, ddfd, owner, group);