Home | History | Annotate | Download | only in utils

Lines Matching defs:esc

648 	/* ESC-[<param1>;<param2><last> */
702 /* ESC-O<param1>;<param2><last> */
763 static int esc = -1;
774 if (esc >= 0) {
775 if (c == 27 /* ESC */) {
776 esc = 0;
780 if (esc == 6) {
782 esc = -1;
784 esc_buf[esc++] = c;
785 esc_buf[esc] = '\0';
789 if (esc == 1) {
792 esc = -1;
798 if (esc > 1) {
803 esc = -1;
808 esc = -1;
853 case 27: /* ESC */
854 esc = 0;