Lines Matching defs:msg
93 struct msg_buf *msg;
107 msg = (struct msg_buf *)((addr_t) sccb + sccb->length);
108 memset(msg, 0, sizeof(struct msg_buf));
109 msg->header.length = sizeof(struct msg_buf);
110 msg->header.type = EVTYP_MSG;
112 mdb = &msg->mdb;
128 buffer->current_msg = msg;
143 struct msg_buf *msg;
150 msg = buffer->current_msg;
151 msg->header.length += buffer->current_length;
152 msg->mdb.header.length += buffer->current_length;
153 msg->mdb.mto.length += buffer->current_length;
154 sccb->length += msg->header.length;
177 sclp_write(struct sclp_buffer *buffer, const unsigned char *msg, int count)
183 * parse msg for escape sequences (\t,\v ...) and put formated
184 * msg into an mto (created by sclp_initialize_mto).
206 switch (msg[i_msg]) {
286 if (!isprint(msg[i_msg]))
295 *buffer->current_line++ = sclp_ascebc(msg[i_msg]);