Home | History | Annotate | Download | only in input

Lines Matching refs:ch_count

412 	int ch_count;
415 for (i = ch_count = 0; i < ARRAY_SIZE(kbd_to_ansi364); i++) {
419 if (ch_count < max_chars)
420 output_ch[ch_count] = *escape;
421 ch_count++;
423 return ch_count;
456 int ch_count = 0;
491 if (ch_count < max_chars && ch != 0xff)
492 output_ch[ch_count++] = (uchar)ch;
494 ch_count += input_keycode_to_ansi364(config, key,
499 if (ch_count > max_chars) {
501 __func__, max_chars, ch_count);
506 return ch_count;