Lines Matching refs:info

93 		    uhci_bulk_isoc_xfer_t *info);
95 uhci_bulk_isoc_xfer_t *info);
97 uhci_bulk_isoc_xfer_t *info, uint_t index,
100 uhci_bulk_isoc_xfer_t *info, uint32_t paddr,
3067 uhci_bulk_isoc_xfer_t *info)
3070 "uhci_alloc_bulk_isoc_tds: num_tds: 0x%x info: 0x%p",
3071 num_tds, (void *)info);
3073 info->num_pools = 1;
3075 if (uhci_alloc_memory_for_tds(uhcip, num_tds, info) !=
3079 num_tds, info->num_pools);
3082 info->num_pools = num_tds / UHCI_MAX_TD_NUM_PER_POOL;
3084 info->num_pools++;
3087 if (uhci_alloc_memory_for_tds(uhcip, num_tds, info) !=
3091 "num_pools %d", num_tds, info->num_pools);
3109 uhci_bulk_isoc_xfer_t *info)
3118 "uhci_alloc_memory_for_tds: num_tds: 0x%x info: 0x%p "
3119 "num_pools: %u", num_tds, (void *)info, info->num_pools);
3127 if ((info->td_pools = kmem_zalloc(
3128 (sizeof (uhci_bulk_isoc_td_pool_t) * info->num_pools),
3136 for (i = 0; i < info->num_pools; i++) {
3137 if (info->num_pools == 1) {
3139 } else if (i < (info->num_pools - 1)) {
3145 td_pool_ptr1 = &info->td_pools[i];
3153 td_pool_ptr2 = &info->td_pools[j];
3161 kmem_free(info->td_pools,
3163 info->num_pools));
3178 td_pool_ptr2 = &info->td_pools[j];
3186 kmem_free(info->td_pools,
3188 info->num_pools));
3232 td_pool_ptr2 = &info->td_pools[j];
3240 kmem_free(info->td_pools,
3242 info->num_pools));
3627 uhci_bulk_isoc_xfer_t *info,
3633 while (i < info->num_pools) {
3634 *td_pool_pp = &info->td_pools[i];
3644 ASSERT(i < info->num_pools);
3658 uhci_bulk_isoc_xfer_t *info;
3663 if ((info = pp->pp_qh->bulk_xfer_info) == NULL) {
3687 ASSERT(info->num_tds > 0);
3688 if (--info->num_tds == 0) {
3715 ASSERT(info->num_tds == 0);
3718 for (i = 0; i < info->num_pools; i++) {
3719 td_pool_ptr = &info->td_pools[i];
3725 kmem_free(info->td_pools, (sizeof (uhci_bulk_isoc_td_pool_t) *
3726 info->num_pools));
3727 kmem_free(info, sizeof (uhci_bulk_isoc_xfer_t));
4258 uhci_bulk_isoc_xfer_t *info,
4266 while (j < info->num_pools) {
4267 if ((i + info->td_pools[j].num_tds) <= index) {
4268 i += info->td_pools[j].num_tds;
4277 ASSERT(j < info->num_pools);
4278 *td_pool_pp = &info->td_pools[j];