Lines Matching refs:copy
74 _cleanup_(acl_freep) acl_t copy = NULL; in shift_acl()
107 if (modify && !copy) { in shift_acl()
117 copy = acl_init(n); in shift_acl()
118 if (!copy) in shift_acl()
129 if (copy) { in shift_acl()
132 if (acl_create_entry(©, &new_entry) < 0) in shift_acl()
148 *ret = TAKE_PTR(copy); in shift_acl()
317 int copy; in recurse_fd() local
319 copy = fcntl(fd, F_DUPFD_CLOEXEC, 3); in recurse_fd()
320 if (copy < 0) { in recurse_fd()
325 fd = copy; in recurse_fd()