Lines Matching refs:cbp
124 get_all_cbdata_t *cbp = data; in get_one_filesystem() local
139 if ((type & cbp->cb_types) == 0) { in get_one_filesystem()
144 if (cbp->cb_alloc == cbp->cb_used) { in get_one_filesystem()
147 if (cbp->cb_alloc == 0) in get_one_filesystem()
148 cbp->cb_alloc = 64; in get_one_filesystem()
150 cbp->cb_alloc *= 2; in get_one_filesystem()
153 cbp->cb_alloc * sizeof (void *)); in get_one_filesystem()
159 if (cbp->cb_handles) { in get_one_filesystem()
160 bcopy(cbp->cb_handles, handles, in get_one_filesystem()
161 cbp->cb_used * sizeof (void *)); in get_one_filesystem()
162 free(cbp->cb_handles); in get_one_filesystem()
165 cbp->cb_handles = handles; in get_one_filesystem()
168 cbp->cb_handles[cbp->cb_used++] = zhp; in get_one_filesystem()