Home
last modified time | relevance | path

Searched refs:mto (Results 1 – 3 of 3) sorted by relevance

/drivers/s390/char/
Dsclp_rw.c100 struct mto *mto; in sclp_initialize_mto() local
104 mto_size = sizeof(struct mto) + max_len; in sclp_initialize_mto()
112 mto = (struct mto *)(((addr_t) sccb) + sccb->header.length); in sclp_initialize_mto()
118 memset(mto, 0, sizeof(struct mto)); in sclp_initialize_mto()
119 mto->length = sizeof(struct mto); in sclp_initialize_mto()
120 mto->type = 4; /* message text object */ in sclp_initialize_mto()
121 mto->line_type_flags = LNTPFLGS_ENDTEXT; /* end text */ in sclp_initialize_mto()
124 buffer->current_line = (char *) (mto + 1); in sclp_initialize_mto()
138 struct mto *mto; in sclp_finalize_mto() local
146 mto_size = sizeof(struct mto) + str_len; in sclp_finalize_mto()
[all …]
Dsclp_rw.h15 struct mto { struct
62 sizeof(struct write_sccb)) / sizeof(struct mto))
Dsclp_tty.c100 count = sclp_buffer_space(sclp_ttybuf) / sizeof(struct mto); in sclp_tty_write_room()