Lines Matching refs:CTL_ESC
581 if (ch == CTL_ESC('\177')) in unparsech()
623 c = CTL_ESC('\007'); /* Bell */ in parseescape()
626 c = CTL_ESC('\010'); /* Backspace */ in parseescape()
629 c = CTL_ESC('\033'); /* Escape */ in parseescape()
632 c = CTL_ESC('\014'); /* Form Feed */ in parseescape()
635 c = CTL_ESC('\012'); /* New Line */ in parseescape()
638 c = CTL_ESC('\015'); /* Carriage Return */ in parseescape()
641 c = CTL_ESC('\011'); /* Horizontal Tab */ in parseescape()
644 c = CTL_ESC('\013'); /* Vertical Tab */ in parseescape()
675 if (CTL_ESC(val) != val && adrof(STRwarnebcdic)) in parseescape()
692 c = ((*p & CHAR) == '?') ? CTL_ESC('\177') : ((*p & CHAR) & 0237); in parseescape()
694 c = ((*p & CHAR) == '?') ? CTL_ESC('\177') : _toebcdic[_toascii[*p & CHAR] & 0237]; in parseescape()
728 if (p == CTL_ESC('\177')) in unparsestring()