Home | History | Annotate | Download | only in terminal

Lines Matching defs:OSC

697   private final static char OSC = 157;
829 private String osc, dcs; /* to memorize OSC & DCS control sequence */
1276 private void handle_osc(String osc) {
1277 if (osc.length() > 2 && osc.substring(0, 2).equals("4;")) {
1279 String[] colorData = osc.split(";");
1293 debugStr.append("OSC: invalid color sequence encountered: ").append(osc);
1298 debug("OSC: " + osc);
1639 case OSC:
1640 osc = "";
1928 handle_osc(osc);
1933 if (c == '\\' && osc.charAt(osc.length() - 1) == ESC) {
1934 handle_osc(osc);
1938 osc = osc + c;
1975 osc = "";