Searched refs:esc (Results 1 – 2 of 2) sorted by relevance
1012 char *esc = lcd_escape + 2; in handle_lcd_special_code() local1016 switch (*esc) { in handle_lcd_special_code()1133 if (strchr(esc, ';') == NULL) in handle_lcd_special_code()1136 esc++; in handle_lcd_special_code()1138 cgaddr = *(esc++) - '0'; in handle_lcd_special_code()1147 while (*esc && cgoffset < 8) { in handle_lcd_special_code()1149 if (*esc >= '0' && *esc <= '9') in handle_lcd_special_code()1150 value |= (*esc - '0') << shift; in handle_lcd_special_code()1151 else if (*esc >= 'A' && *esc <= 'Z') in handle_lcd_special_code()1152 value |= (*esc - 'A' + 10) << shift; in handle_lcd_special_code()[all …]
451 const u8 delim = SLIP_DELIMITER, esc = SLIP_ESC; in h5_unslip_one_byte() local465 byte = &esc; in h5_unslip_one_byte()