Lines Matching refs:length
69 sccb->header.length = sizeof(struct write_sccb); in sclp_make_buffer()
70 sccb->msg_buf.header.length = sizeof(struct msg_buf); in sclp_make_buffer()
72 sccb->msg_buf.mdb.header.length = sizeof(struct mdb); in sclp_make_buffer()
76 sccb->msg_buf.mdb.go.length = sizeof(struct go); in sclp_make_buffer()
108 if ((MAX_SCCB_ROOM - sccb->header.length) < mto_size) in sclp_initialize_mto()
112 mto = (struct mto *)(((addr_t) sccb) + sccb->header.length); in sclp_initialize_mto()
119 mto->length = sizeof(struct mto); in sclp_initialize_mto()
150 mto = (struct mto *)(((addr_t) sccb) + sccb->header.length); in sclp_finalize_mto()
153 mto->length = mto_size; in sclp_finalize_mto()
159 sccb->header.length += mto_size; in sclp_finalize_mto()
160 sccb->msg_buf.header.length += mto_size; in sclp_finalize_mto()
161 sccb->msg_buf.mdb.header.length += mto_size; in sclp_finalize_mto()
314 count = MAX_SCCB_ROOM - buffer->sccb->header.length; in sclp_buffer_space()