Lines Matching refs:cbp
132 get_all_cbdata_t *cbp = data; in get_one_filesystem() local
147 if ((type & cbp->cb_types) == 0) { in get_one_filesystem()
152 if (cbp->cb_alloc == cbp->cb_used) { in get_one_filesystem()
155 if (cbp->cb_alloc == 0) in get_one_filesystem()
156 cbp->cb_alloc = 64; in get_one_filesystem()
158 cbp->cb_alloc *= 2; in get_one_filesystem()
161 cbp->cb_alloc * sizeof (void *)); in get_one_filesystem()
167 if (cbp->cb_handles) { in get_one_filesystem()
168 bcopy(cbp->cb_handles, handles, in get_one_filesystem()
169 cbp->cb_used * sizeof (void *)); in get_one_filesystem()
170 free(cbp->cb_handles); in get_one_filesystem()
173 cbp->cb_handles = handles; in get_one_filesystem()
176 cbp->cb_handles[cbp->cb_used++] = zhp; in get_one_filesystem()