Lines Matching refs:msg
65 msg_text_t *msg;
67 msg = (msg_text_t *)calloc(1, sizeof (msg_text_t));
69 if (!msg) {
73 msg->id = id;
74 msg->data = data;
80 q->q_head = msg;
81 q->q_tail = msg;
84 q->q_tail->next = msg;
85 msg->prev = q->q_tail;
86 q->q_tail = msg;
101 msg_text_t *msg;
109 msg = q->q_head;
110 ASSERT(msg);
111 q->q_head = msg->next;
118 return (msg);
123 msg_text_t *msg
126 free(msg);