Lines Matching refs:rc

328 	int rc;  in wsemul_vt100_nextline()  local
332 rc = wsemul_vt100_scrollup(edp, 1); in wsemul_vt100_nextline()
338 rc = 0; in wsemul_vt100_nextline()
341 return rc; in wsemul_vt100_nextline()
356 int rc = 0; in wsemul_vt100_output_normal() local
381 rc = wsemul_vt100_nextline(edp); in wsemul_vt100_output_normal()
382 if (rc != 0) in wsemul_vt100_output_normal()
383 return rc; in wsemul_vt100_output_normal()
389 WSEMULOP(rc, edp, &edp->abortstate, copycols, in wsemul_vt100_output_normal()
391 if (rc != 0) in wsemul_vt100_output_normal()
396 WSEMULOP(rc, edp, &edp->abortstate, putchar, in wsemul_vt100_output_normal()
400 WSEMULOP(rc, edp, &edp->abortstate, putchar, in wsemul_vt100_output_normal()
404 if (rc != 0) in wsemul_vt100_output_normal()
413 if (rc != 0) { in wsemul_vt100_output_normal()
417 return rc; in wsemul_vt100_output_normal()
428 int rc = 0; in wsemul_vt100_output_c0c1() local
496 rc = wsemul_vt100_nextline(edp); in wsemul_vt100_output_c0c1()
503 return rc; in wsemul_vt100_output_c0c1()
511 int rc = 0; in wsemul_vt100_output_esc() local
560 rc = wsemul_vt100_nextline(edp); in wsemul_vt100_output_esc()
602 rc = wsemul_vt100_scrolldown(edp, 1); in wsemul_vt100_output_esc()
612 rc = wsemul_vt100_ed(edp, 2); in wsemul_vt100_output_esc()
613 if (rc != 0) in wsemul_vt100_output_esc()
652 if (rc != 0) in wsemul_vt100_output_esc()
653 return rc; in wsemul_vt100_output_esc()
976 int rc = 0; in wsemul_vt100_output_esc_hash() local
984 WSEMULOP(rc, edp, &edp->abortstate, copycols, in wsemul_vt100_output_esc_hash()
986 if (rc != 0) in wsemul_vt100_output_esc_hash()
987 return rc; in wsemul_vt100_output_esc_hash()
989 WSEMULOP(rc, edp, &edp->abortstate, erasecols, in wsemul_vt100_output_esc_hash()
992 if (rc != 0) in wsemul_vt100_output_esc_hash()
993 return rc; in wsemul_vt100_output_esc_hash()
1006 WSEMULOP(rc, edp, &edp->abortstate, copycols, in wsemul_vt100_output_esc_hash()
1008 if (rc != 0) in wsemul_vt100_output_esc_hash()
1009 return rc; in wsemul_vt100_output_esc_hash()
1012 WSEMULOP(rc, edp, &edp->abortstate, erasecols, in wsemul_vt100_output_esc_hash()
1015 if (rc != 0) in wsemul_vt100_output_esc_hash()
1016 return rc; in wsemul_vt100_output_esc_hash()
1029 WSEMULOP(rc, edp, &edp->abortstate, putchar, in wsemul_vt100_output_esc_hash()
1031 if (rc != 0) in wsemul_vt100_output_esc_hash()
1032 return rc; in wsemul_vt100_output_esc_hash()
1058 int rc = 0; in wsemul_vt100_output_csi() local
1087 rc = wsemul_vt100_handle_csi(edp, instate, kernel); in wsemul_vt100_output_csi()
1088 if (rc != 0) { in wsemul_vt100_output_csi()
1091 return rc; in wsemul_vt100_output_csi()
1113 int rc = 0; in wsemul_vt100_output() local
1136 rc = (*edp->emulops->cursor) in wsemul_vt100_output()
1143 if (rc != 0) in wsemul_vt100_output()
1186 rc = wsemul_vt100_scrollup(edp, lines); in wsemul_vt100_output()
1187 if (rc != 0) { in wsemul_vt100_output()
1212 rc = wsemul_vt100_output_c0c1(edp, instate, kernel); in wsemul_vt100_output()
1213 if (rc != 0) in wsemul_vt100_output()
1220 rc = in wsemul_vt100_output()
1222 if (rc != 0) in wsemul_vt100_output()
1232 rc = vt100_output[edp->state - 1](edp, instate, kernel); in wsemul_vt100_output()
1233 if (rc != 0) in wsemul_vt100_output()
1238 if (rc != 0) in wsemul_vt100_output()
1243 rc = (*edp->emulops->cursor) in wsemul_vt100_output()
1250 if (rc != 0) { in wsemul_vt100_output()
1262 if (rc == 0) in wsemul_vt100_output()