Lines Matching defs:cec_new
1607 s1394_isoch_cec_t *cec_new;
1657 cec_new = kmem_zalloc(sizeof (s1394_isoch_cec_t), KM_SLEEP);
1660 cec_new->cec_type = S1394_SINGLE;
1663 mutex_init(&cec_new->isoch_cec_mutex, NULL, MUTEX_DRIVER,
1665 cv_init(&cec_new->in_callbacks_cv, NULL, CV_DRIVER,
1669 cec_new->cec_member_list_head = NULL;
1670 cec_new->cec_member_list_tail = NULL;
1673 cec_new->filter_min_speed = sii->si_speed;
1674 cec_new->filter_max_speed = sii->si_speed;
1675 cec_new->filter_current_speed = cec_new->filter_max_speed;
1676 cec_new->filter_channel_mask = sii->si_channel_mask;
1677 cec_new->bandwidth = sii->si_bandwidth;
1678 cec_new->state_transitions = ISOCH_CEC_FREE | ISOCH_CEC_JOIN |
1684 s1394_isoch_cec_list_insert(hal, cec_new);
1705 (t1394_isoch_cec_handle_t)cec_new, 0, &jii);
1713 (t1394_isoch_cec_handle_t *)&cec_new);
1734 (t1394_isoch_cec_handle_t)cec_new, 0, &err);
1745 (t1394_isoch_cec_handle_t)cec_new, 0);
1756 (t1394_isoch_cec_handle_t *)&cec_new);
1774 mutex_enter(&cec_new->isoch_cec_mutex);
1775 output_args->channel_num = cec_new->realloc_chnl_num;
1776 mutex_exit(&cec_new->isoch_cec_mutex);
1779 *t1394_single_hdl = (t1394_isoch_single_handle_t)cec_new;
1885 s1394_isoch_cec_t *cec_new;
1943 cec_new = kmem_zalloc(sizeof (s1394_isoch_cec_t), KM_SLEEP);
1946 cec_new->cec_type = S1394_PEER_TO_PEER;
1949 mutex_init(&cec_new->isoch_cec_mutex, NULL, MUTEX_DRIVER,
1951 cv_init(&cec_new->in_callbacks_cv, NULL, CV_DRIVER,
1955 cec_new->cec_member_list_head = NULL;
1956 cec_new->cec_member_list_tail = NULL;
1959 cec_new->filter_min_speed = props->cec_min_speed;
1960 cec_new->filter_max_speed = props->cec_max_speed;
1961 cec_new->filter_current_speed = cec_new->filter_max_speed;
1962 cec_new->filter_channel_mask = props->cec_channel_mask;
1963 cec_new->bandwidth = props->cec_bandwidth;
1964 cec_new->cec_options = props->cec_options;
1965 cec_new->state_transitions = ISOCH_CEC_FREE | ISOCH_CEC_JOIN |
1971 s1394_isoch_cec_list_insert(hal, cec_new);
1976 *t1394_isoch_cec_hdl = (t1394_isoch_cec_handle_t)cec_new;