Searched defs:new_repeat (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libcommputil/common/
H A Dsdp_parse.c587 sdp_repeat_t *new_repeat; local
607 new_repeat = calloc(1, sizeof (sdp_repeat_t));
608 if (new_repeat == NULL) {
618 time->t_repeat = new_repeat;
622 repeat->r_next = new_repeat;
631 if (commp_time_to_secs(begin, current, &new_repeat->r_interval) != 0)
637 if (commp_time_to_secs(begin, current, &new_repeat->r_duration) != 0)
649 if ((ret = add_value_to_list(&new_repeat->r_offset, begin,
670 sdp_free_repeat(new_repeat);
H A Dsdp.c528 sdp_repeat_t *new_repeat; local
533 new_repeat = calloc(1, sizeof (sdp_repeat_t));
534 if (new_repeat == NULL)
536 new_repeat->r_interval = interval;
537 new_repeat->r_duration = duration;
538 if ((ret = sdp_str_to_list(&new_repeat->r_offset, offset,
544 time->t_repeat = new_repeat;
548 tmp->r_next = new_repeat;
552 sdp_free_repeat(new_repeat);

Completed in 59 milliseconds