Lines Matching refs:new_bw
528 sdp_bandwidth_t *new_bw = NULL;
535 new_bw = calloc(1, sizeof (sdp_bandwidth_t));
536 if (new_bw == NULL) {
545 COMMP_COPY_STR(new_bw->b_type, begin, current - begin);
546 if (new_bw->b_type == NULL) {
547 sdp_free_bandwidth(new_bw);
557 if (commp_strtoull(begin, current, &new_bw->b_value) != 0)
560 *bw = new_bw;
565 tmp->b_next = new_bw;
570 sdp_free_bandwidth(new_bw);