Lines Matching refs:ccode
130 int ccode; in cio_start_key() local
152 ccode = ssch(sch->schid, orb); in cio_start_key()
155 CIO_HEX_EVENT(5, &ccode, sizeof(ccode)); in cio_start_key()
157 switch (ccode) { in cio_start_key()
170 return ccode; in cio_start_key()
188 int ccode; in cio_resume() local
193 ccode = rsch (sch->schid); in cio_resume()
195 CIO_HEX_EVENT(4, &ccode, sizeof(ccode)); in cio_resume()
197 switch (ccode) { in cio_resume()
221 int ccode; in cio_halt() local
232 ccode = hsch (sch->schid); in cio_halt()
234 CIO_HEX_EVENT(2, &ccode, sizeof(ccode)); in cio_halt()
236 switch (ccode) { in cio_halt()
255 int ccode; in cio_clear() local
266 ccode = csch (sch->schid); in cio_clear()
268 CIO_HEX_EVENT(2, &ccode, sizeof(ccode)); in cio_clear()
270 switch (ccode) { in cio_clear()
290 int ccode; in cio_cancel() local
298 ccode = xsch (sch->schid); in cio_cancel()
300 CIO_HEX_EVENT(2, &ccode, sizeof(ccode)); in cio_cancel()
302 switch (ccode) { in cio_cancel()
411 int ccode, retry, ret = 0; in cio_commit_config() local
421 ccode = msch(sch->schid, &schib); in cio_commit_config()
422 if (ccode < 0) /* -EIO if msch gets a program check. */ in cio_commit_config()
423 return ccode; in cio_commit_config()
424 switch (ccode) { in cio_commit_config()