Home | History | Annotate | Download | only in utils

Lines Matching defs:esc

647 	/* ESC-[<param1>;<param2><last> */
701 /* ESC-O<param1>;<param2><last> */
762 static int esc = -1;
773 if (esc >= 0) {
774 if (c == 27 /* ESC */) {
775 esc = 0;
779 if (esc == 6) {
781 esc = -1;
783 esc_buf[esc++] = c;
784 esc_buf[esc] = '\0';
788 if (esc == 1) {
791 esc = -1;
797 if (esc > 1) {
802 esc = -1;
807 esc = -1;
852 case 27: /* ESC */
853 esc = 0;