Home
last modified time | relevance | path

Searched refs:pl_user_prop (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/contrib/openzfs/lib/libzfs/
H A Dlibzfs_pool.c1049 entry->pl_user_prop = zfs_strdup(hdl, propname); in zpool_expand_proplist()
1050 entry->pl_width = strlen(entry->pl_user_prop); in zpool_expand_proplist()
1060 entry->pl_user_prop = zfs_asprintf(hdl, "feature@%s", in zpool_expand_proplist()
1062 entry->pl_width = strlen(entry->pl_user_prop); in zpool_expand_proplist()
1089 if (entry->pl_user_prop != NULL && in zpool_expand_proplist()
1090 strcmp(propname, entry->pl_user_prop) == 0) { in zpool_expand_proplist()
1103 entry->pl_user_prop = propname; in zpool_expand_proplist()
1104 entry->pl_width = strlen(entry->pl_user_prop); in zpool_expand_proplist()
1121 zfs_prop_user(entry->pl_user_prop) && in zpool_expand_proplist()
1122 zpool_get_userprop(zhp, entry->pl_user_prop, buf, in zpool_expand_proplist()
[all …]
H A Dlibzfs_util.c1352 assert(pl->pl_user_prop != NULL); in zprop_print_headers()
1353 len = strlen(pl->pl_user_prop); in zprop_print_headers()
1977 entry->pl_user_prop = zfs_strdup(hdl, propname); in addlist()
2046 free(pl->pl_user_prop); in zprop_free_list()
H A Dlibzfs_dataset.c4585 if (strcmp((*last)->pl_user_prop, in zfs_expand_proplist()
4592 entry->pl_user_prop = in zfs_expand_proplist()
4621 if (nvlist_lookup_nvlist(userprops, entry->pl_user_prop, in zfs_expand_proplist()
4629 entry->pl_user_prop, in zfs_expand_proplist()
H A Dlibzfs.abi4214 <var-decl name='pl_user_prop' type-id='26a90f95' visibility='default'/>
/freebsd/sys/contrib/openzfs/cmd/zfs/
H A Dzfs_main.c2142 } else if (zfs_prop_userquota(pl->pl_user_prop)) { in get_callback()
2145 if (zfs_prop_get_userquota(zhp, pl->pl_user_prop, in get_callback()
2152 pl->pl_user_prop, buf, sourcetype, source, NULL, in get_callback()
2154 } else if (zfs_prop_written(pl->pl_user_prop)) { in get_callback()
2157 if (zfs_prop_get_written(zhp, pl->pl_user_prop, in get_callback()
2164 pl->pl_user_prop, buf, sourcetype, source, NULL, in get_callback()
2168 pl->pl_user_prop, &propval) != 0) { in get_callback()
2193 pl->pl_user_prop, rbuf, sizeof (rbuf), in get_callback()
2198 pl->pl_user_prop, strval, sourcetype, in get_callback()
3678 for (i = 0; pl->pl_user_prop[i] != '\0'; i++) in print_header()
[all …]
/freebsd/sys/contrib/openzfs/cmd/zpool/
H A Dzpool_main.c6802 for (i = 0; pl->pl_user_prop[i] != '\0'; i++) in print_line()
6804 pl->pl_user_prop[i]); in print_line()
6896 } else if ((zpool_prop_feature(pl->pl_user_prop) || in collect_pool()
6897 zpool_prop_unsupported(pl->pl_user_prop)) && in collect_pool()
6898 zpool_prop_get_feature(zhp, pl->pl_user_prop, property, in collect_pool()
6902 } else if (zfs_prop_user(pl->pl_user_prop) && in collect_pool()
6903 zpool_get_userprop(zhp, pl->pl_user_prop, property, in collect_pool()
6917 prop_name = pl->pl_user_prop; in collect_pool()
12614 prop_name = pl->pl_user_prop; in get_callback_vdev()
12729 zfs_prop_user(pl->pl_user_prop)) { in get_callback()
[all …]
/freebsd/sys/contrib/openzfs/include/
H A Dlibzfs.h616 char *pl_user_prop; member