• Home
  • Raw
  • Download

Lines Matching refs:sccb

51 	struct sccb_header *sccb;  in sclp_make_buffer()  local
53 sccb = (struct sccb_header *) page; in sclp_make_buffer()
58 buffer = ((struct sclp_buffer *) ((addr_t) sccb + PAGE_SIZE)) - 1; in sclp_make_buffer()
59 buffer->sccb = sccb; in sclp_make_buffer()
69 memset(sccb, 0, sizeof(struct sccb_header)); in sclp_make_buffer()
70 sccb->length = sizeof(struct sccb_header); in sclp_make_buffer()
82 return buffer->sccb; in sclp_unmake_buffer()
92 struct sccb_header *sccb; in sclp_initialize_mto() local
103 sccb = buffer->sccb; in sclp_initialize_mto()
104 if ((MAX_SCCB_ROOM - sccb->length) < msg_size) in sclp_initialize_mto()
107 msg = (struct msg_buf *)((addr_t) sccb + sccb->length); in sclp_initialize_mto()
142 struct sccb_header *sccb; in sclp_finalize_mto() local
149 sccb = buffer->sccb; in sclp_finalize_mto()
154 sccb->length += msg->header.length; in sclp_finalize_mto()
315 struct sccb_header *sccb; in sclp_buffer_space() local
318 sccb = buffer->sccb; in sclp_buffer_space()
319 count = MAX_SCCB_ROOM - sccb->length; in sclp_buffer_space()
368 struct sccb_header *sccb; in sclp_writedata_callback() local
371 sccb = buffer->sccb; in sclp_writedata_callback()
379 switch (sccb->response_code) { in sclp_writedata_callback()
391 if (sclp_remove_processed((struct sccb_header *) sccb) > 0) { in sclp_writedata_callback()
393 sccb->response_code = 0x0000; in sclp_writedata_callback()
409 sccb->response_code = 0x0000; in sclp_writedata_callback()
416 if (sccb->response_code == 0x71f0) in sclp_writedata_callback()
447 buffer->request.sccb = buffer->sccb; in sclp_emit_buffer()