Lines Matching refs:un

4728 allow_usage(boolean_t un, boolean_t requested, const char *msg)
4751 (void) fprintf(fp, gettext("Usage: %s\n"), get_usage(un ? HELP_UNALLOW :
4754 for (int i = 0; i < (un ? unallow_size : allow_size); i++) {
4796 munge_args(int argc, char **argv, boolean_t un, size_t expected_argc,
4799 if (un && argc == expected_argc - 1)
4804 allow_usage(un, B_FALSE,
4811 parse_allow_args(int argc, char **argv, boolean_t un, struct allow_opts *opts)
4816 int all_sum = un ? ldcsuge_sum + opts->recursive : ldcsuge_sum;
4819 allow_usage(un, B_FALSE,
4824 allow_usage(un, B_TRUE, NULL);
4831 allow_usage(un, B_FALSE,
4834 opts->dataset = munge_args(argc, argv, un, 3, &opts->perms);
4836 allow_usage(un, B_FALSE,
4841 allow_usage(un, B_FALSE,
4843 opts->dataset = munge_args(argc, argv, un, 2, &opts->perms);
4846 allow_usage(un, B_FALSE,
4848 opts->dataset = munge_args(argc, argv, un, 2, &opts->perms);
4854 opts->dataset = munge_args(argc, argv, un, 2, &opts->perms);
4855 } else if (argc == 1 && !un) {
4859 opts->dataset = munge_args(argc, argv, un, 3, &opts->perms);
5014 construct_fsacl_list(boolean_t un, struct allow_opts *opts, nvlist_t **nvlp)
5061 allow_usage(un, B_TRUE, errbuf);
5075 allow_usage(un, B_TRUE, errbuf);
5101 allow_usage(un, B_TRUE, errbuf);
5274 boolean_t un;
5287 return (zfs_set_fsacl(zhp, perms->un, perms->nvl));
5291 zfs_do_allow_unallow_impl(int argc, char **argv, boolean_t un)
5300 const char *optstr = un ? "ldugecsrh" : "ldugecsh";
5348 parse_allow_args(argc, argv, un, &opts);
5370 (void) construct_fsacl_list(un, &opts, &update_perm_nvl);
5371 if (zfs_set_fsacl(zhp, un, update_perm_nvl) != 0)
5374 if (un && opts.recursive) {
5375 struct deleg_perms data = { un, update_perm_nvl };