Home
last modified time | relevance | path

Searched refs:zph (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/contrib/openzfs/lib/libzfs/
H A Dlibzfs_dataset.c258 zpool_handle_t *zph; in zpool_add_handle() local
260 if ((zph = zpool_open_canfail(hdl, pool_name)) != NULL) { in zpool_add_handle()
262 zph->zpool_next = hdl->libzfs_pool_handles; in zpool_add_handle()
263 hdl->libzfs_pool_handles = zph; in zpool_add_handle()
265 return (zph); in zpool_add_handle()
272 zpool_handle_t *zph = hdl->libzfs_pool_handles; in zpool_find_handle() local
274 while ((zph != NULL) && in zpool_find_handle()
275 (strncmp(pool_name, zpool_get_name(zph), len) != 0)) in zpool_find_handle()
276 zph = zph->zpool_next; in zpool_find_handle()
277 return (zph); in zpool_find_handle()
[all …]
H A Dlibzfs_crypto.c815 encryption_feature_is_enabled(zpool_handle_t *zph) in encryption_feature_is_enabled() argument
821 if (zpool_get_prop_int(zph, ZPOOL_PROP_VERSION, NULL) in encryption_feature_is_enabled()
826 features = zpool_get_features(zph); in encryption_feature_is_enabled()
H A Dlibzfs.abi5182 <parameter type-id='4c81de99' name='zph'/>
/freebsd/sys/contrib/openzfs/cmd/zfs/
H A Dzfs_iter.c68 zpool_handle_t *zph; in zfs_include_snapshots() local
73 zph = zfs_get_pool_handle(zhp); in zfs_include_snapshots()
74 return (zpool_get_prop_int(zph, ZPOOL_PROP_LISTSNAPS, NULL)); in zfs_include_snapshots()