Lines Matching refs:repeat
574 * repeat-fields (r=)
575 * Not stand-alone. One or more repeat field appear after time field.
576 * %x72 "=" repeat-interval SP typed-time 1*(SP typed-time)
577 * repeat-interval = POS-DIGIT *DIGIT [fixed-len-time-unit]
586 sdp_repeat_t *repeat;
596 * time is NULL then repeat field has occured before time field and
602 * Get the latest time field and associate this repeat field
613 * for a given time field, there could be several repeat fields
614 * add the new repeat field at the end of it.
616 repeat = time->t_repeat;
617 if (repeat == NULL) {
620 while (repeat->r_next != NULL)
621 repeat = repeat->r_next;
622 repeat->r_next = new_repeat;
666 if (repeat != NULL)
667 repeat->r_next = NULL;
1098 /* we pass time, as repeat is associated with time */