Home
last modified time | relevance | path

Searched refs:msg_chain (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/libsip/common/
H A Dsip_logging.c265 sip_msg_chain_t *msg_chain; in sip_write_xaction_to_log() local
285 msg_chain = sip_log->sip_msgs; in sip_write_xaction_to_log()
286 while (msg_chain != NULL) { in sip_write_xaction_to_log()
287 nmsg_chain = msg_chain->next; in sip_write_xaction_to_log()
289 localtime_r(&msg_chain->msg_timestamp, &tms)); in sip_write_xaction_to_log()
291 " %d\n%s", timebuf, msg_chain->msg_seq, msg_chain-> in sip_write_xaction_to_log()
293 free(msg_chain->sip_msg); in sip_write_xaction_to_log()
294 free(msg_chain); in sip_write_xaction_to_log()
296 msg_chain = nmsg_chain; in sip_write_xaction_to_log()
317 sip_msg_chain_t *msg_chain; in sip_write_dlg_to_log() local
[all …]
H A Dsip_xaction.c486 sip_msg_chain_t *msg_chain; in sip_xaction_remove() local
530 msg_chain = tmp->sip_xaction_log[count].sip_msgs; in sip_xaction_remove()
531 while (msg_chain != NULL) { in sip_xaction_remove()
532 nmsg_chain = msg_chain->next; in sip_xaction_remove()
533 if (msg_chain->sip_msg != NULL) in sip_xaction_remove()
534 free(msg_chain->sip_msg); in sip_xaction_remove()
535 free(msg_chain); in sip_xaction_remove()
536 msg_chain = nmsg_chain; in sip_xaction_remove()
H A Dsip_dialog.c110 sip_msg_chain_t *msg_chain; in sip_release_dialog_res() local
147 msg_chain = dialog->sip_dlg_log[count].sip_msgs; in sip_release_dialog_res()
148 while (msg_chain != NULL) { in sip_release_dialog_res()
149 nmsg_chain = msg_chain->next; in sip_release_dialog_res()
150 if (msg_chain->sip_msg != NULL) in sip_release_dialog_res()
151 free(msg_chain->sip_msg); in sip_release_dialog_res()
152 free(msg_chain); in sip_release_dialog_res()
153 msg_chain = nmsg_chain; in sip_release_dialog_res()
/illumos-gate/usr/src/cmd/msgfmt/
H A Dsun_msgfmt.h74 struct msg_chain { struct
79 struct msg_chain *next; /* next node */ argument
84 struct msg_chain *first_elem; /* head of msg link list */
85 struct msg_chain *current_elem; /* most recently used msg */
H A Dmsgfmt.c669 struct msg_chain *p1; in insert_message()
670 struct msg_chain *node, *prev_node; in insert_message()
714 node = (struct msg_chain *) in insert_message()
715 Xmalloc(sizeof (struct msg_chain)); in insert_message()
735 node = (struct msg_chain *) in insert_message()
736 Xmalloc(sizeof (struct msg_chain)); in insert_message()
890 struct msg_chain *p; in output_one_mo_file()
1128 struct msg_chain *m; in printlist()