Home | History | Annotate | Download | only in utils

Lines Matching defs:esc

637 	/* ESC-[<param1>;<param2><last> */
691 /* ESC-O<param1>;<param2><last> */
752 static int esc = -1;
763 if (esc >= 0) {
764 if (c == 27 /* ESC */) {
765 esc = 0;
769 if (esc == 6) {
771 esc = -1;
773 esc_buf[esc++] = c;
774 esc_buf[esc] = '\0';
778 if (esc == 1) {
781 esc = -1;
787 if (esc > 1) {
792 esc = -1;
797 esc = -1;
842 case 27: /* ESC */
843 esc = 0;