Lines Matching defs:cbp
1048 libzfs_add_handle(get_all_cb_t *cbp, zfs_handle_t *zhp)
1050 if (cbp->cb_alloc == cbp->cb_used) {
1054 newsz = cbp->cb_alloc ? cbp->cb_alloc * 2 : 64;
1056 cbp->cb_handles, cbp->cb_alloc * sizeof (void *),
1058 cbp->cb_handles = ptr;
1059 cbp->cb_alloc = newsz;
1061 cbp->cb_handles[cbp->cb_used++] = zhp;
1067 get_all_cb_t *cbp = data;
1090 libzfs_add_handle(cbp, zhp);
1091 if (zfs_iter_filesystems(zhp, mount_cb, cbp) != 0) {