Home
last modified time | relevance | path

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

/NextBSD/cddl/contrib/opensolaris/cmd/zfs/
HDzfs_iter.c79 zpool_handle_t *zph; in zfs_include_snapshots() local
84 zph = zfs_get_pool_handle(zhp); in zfs_include_snapshots()
85 return (zpool_get_prop_int(zph, ZPOOL_PROP_LISTSNAPS, NULL)); in zfs_include_snapshots()
/NextBSD/cddl/contrib/opensolaris/lib/libzfs/common/
HDlibzfs_dataset.c265 zpool_handle_t *zph; in zpool_add_handle() local
267 if ((zph = zpool_open_canfail(hdl, pool_name)) != NULL) { in zpool_add_handle()
269 zph->zpool_next = hdl->libzfs_pool_handles; in zpool_add_handle()
270 hdl->libzfs_pool_handles = zph; in zpool_add_handle()
272 return (zph); in zpool_add_handle()
279 zpool_handle_t *zph = hdl->libzfs_pool_handles; in zpool_find_handle() local
281 while ((zph != NULL) && in zpool_find_handle()
282 (strncmp(pool_name, zpool_get_name(zph), len) != 0)) in zpool_find_handle()
283 zph = zph->zpool_next; in zpool_find_handle()
284 return (zph); in zpool_find_handle()
[all …]