Lines Matching defs:list

222  * Given a media list and media name ("audio", "video", et al), it searches
223 * the list for that media. Returns NULL if media not present.
242 * Given a attribute list and name of the attribute ("rtpmap", "fmtp", et al),
243 * this API searches the list for that attribute. Returns NULL if not found.
262 * Given a media list and a format number, this API will return the rtpmap
725 sdp_list_t *list;
752 list = session->s_email;
753 while (list != NULL) {
754 len += strlen((char *)list->value) + FIELD_EQUALS_CRLF_LEN;
755 list = list->next;
757 list = session->s_phone;
758 while (list != NULL) {
759 len += strlen((char *)list->value) + FIELD_EQUALS_CRLF_LEN;
760 list = list->next;
776 list = repeat->r_offset;
777 while (list != NULL) {
779 *(uint64_t *)list->value) + 1;
780 list = list->next;
804 list = media->m_format;
805 while (list != NULL) {
806 len += strlen((char *)list->value) + 1;
807 list = list->next;
831 sdp_list_t *list;
869 list = session->s_email;
870 while (list != NULL) {
871 if (sdp_add_email(new_sess, (char *)list->value) != 0)
873 list = list->next;
875 list = session->s_phone;
876 while (list != NULL) {
877 if (sdp_add_phone(new_sess, (char *)list->value) != 0)
879 list = list->next;
966 sdp_list_t *list;
1016 list = session->s_email;
1017 while (list != NULL) {
1018 wrote = snprintf(buf, len, "e=%s%s", (char *)list->value,
1022 list = list->next;
1024 list = session->s_phone;
1025 while (list != NULL) {
1026 wrote = snprintf(buf, len, "p=%s%s", (char *)list->value,
1030 list = list->next;
1048 list = repeat->r_offset;
1049 while (list != NULL) {
1051 *(uint64_t *)list->value);
1054 list = list->next;
1096 list = media->m_format;
1097 while (list != NULL) {
1098 wrote = snprintf(buf, len, " %s", (char *)list->value);
1101 list = list->next;
1228 * Given a media list and the media, this API deletes that media from the
1229 * list. It frees the memory corresponding to that media.
1257 * Given an attribute list and an attribute, this API deletes that attribue
1258 * from the list. It frees the memory corresponding to that attribute.