Searched refs:esc_save (Results 1 - 2 of 2) sorted by path

/u-boot/common/
H A Dcli_getch.c17 * @ESC_REJECT: Invalid escape sequence, so the esc_save[] characters are
19 * @ESC_SAVE: Character should be saved in esc_save until we have another one
86 if (cch->esc_save[1] == '[') {
96 switch (cch->esc_save[2]) {
114 if (cch->esc_save[2] == '2')
149 return cch->esc_save[cch->emit_upto++];
182 cch->esc_save[cch->esc_len++] = ichar;
190 cch->esc_save[cch->esc_len++] = ichar;
191 ichar = cch->esc_save[cch->emit_upto++];
203 cch->esc_save[cc
[all...]
/u-boot/include/
H A Dcli.h17 * @esc_save: Escape characters collected so far
18 * @emit_upto: Next index to emit from esc_save
19 * @emitting: true if emitting from esc_save
23 char esc_save[8]; member in struct:cli_ch_state

Completed in 113 milliseconds