Lines Matching refs:msg
92 struct msg_buf *msg; in sclp_initialize_mto() local
106 msg = (struct msg_buf *)((addr_t) sccb + sccb->length); in sclp_initialize_mto()
107 memset(msg, 0, sizeof(struct msg_buf)); in sclp_initialize_mto()
108 msg->header.length = sizeof(struct msg_buf); in sclp_initialize_mto()
109 msg->header.type = EVTYP_MSG; in sclp_initialize_mto()
111 mdb = &msg->mdb; in sclp_initialize_mto()
127 buffer->current_msg = msg; in sclp_initialize_mto()
142 struct msg_buf *msg; in sclp_finalize_mto() local
149 msg = buffer->current_msg; in sclp_finalize_mto()
150 msg->header.length += buffer->current_length; in sclp_finalize_mto()
151 msg->mdb.header.length += buffer->current_length; in sclp_finalize_mto()
152 msg->mdb.mto.length += buffer->current_length; in sclp_finalize_mto()
153 sccb->length += msg->header.length; in sclp_finalize_mto()
176 sclp_write(struct sclp_buffer *buffer, const unsigned char *msg, int count) in sclp_write() argument
205 switch (msg[i_msg]) { in sclp_write()
285 if (!isprint(msg[i_msg])) in sclp_write()
294 *buffer->current_line++ = sclp_ascebc(msg[i_msg]); in sclp_write()