HomeSort by: relevance | last modified time | path
    Searched defs:zph (Results 1 - 2 of 2) sorted by relevancy

  /src/external/cddl/osnet/dist/cmd/zfs/
zfs_iter.c 78 zpool_handle_t *zph; local
83 zph = zfs_get_pool_handle(zhp);
84 return (zpool_get_prop_int(zph, ZPOOL_PROP_LISTSNAPS, NULL));
  /src/external/cddl/osnet/dist/lib/libzfs/common/
libzfs_dataset.c 234 zpool_handle_t *zph; local
236 if ((zph = zpool_open_canfail(hdl, pool_name)) != NULL) {
238 zph->zpool_next = hdl->libzfs_pool_handles;
239 hdl->libzfs_pool_handles = zph;
241 return (zph);
248 zpool_handle_t *zph = hdl->libzfs_pool_handles; local
250 while ((zph != NULL) &&
251 (strncmp(pool_name, zpool_get_name(zph), len) != 0))
252 zph = zph->zpool_next
266 zpool_handle_t *zph; local
283 zpool_handle_t *next, *zph = hdl->libzfs_pool_handles; local
    [all...]

Completed in 88 milliseconds