Lines Matching refs:cbp
128 get_all_cbdata_t *cbp = data; in get_one_filesystem() local
143 if ((type & cbp->cb_types) == 0) { in get_one_filesystem()
148 if (cbp->cb_alloc == cbp->cb_used) { in get_one_filesystem()
151 if (cbp->cb_alloc == 0) in get_one_filesystem()
152 cbp->cb_alloc = 64; in get_one_filesystem()
154 cbp->cb_alloc *= 2; in get_one_filesystem()
157 cbp->cb_alloc * sizeof (void *)); in get_one_filesystem()
163 if (cbp->cb_handles) { in get_one_filesystem()
164 bcopy(cbp->cb_handles, handles, in get_one_filesystem()
165 cbp->cb_used * sizeof (void *)); in get_one_filesystem()
166 free(cbp->cb_handles); in get_one_filesystem()
169 cbp->cb_handles = handles; in get_one_filesystem()
172 cbp->cb_handles[cbp->cb_used++] = zhp; in get_one_filesystem()