Searched refs:max_chars (Results 1 - 5 of 5) sorted by last modified time

/u-boot/drivers/input/
H A Dinput.c419 * @param max_chars Maximum number of characters to add to output_ch
421 * This may be larger than max_chars, in which case the overflow
425 int keycode, char output_ch[], int max_chars)
436 if (ch_count < max_chars)
463 * @param max_chars Maximum number of characters to add to output_ch
466 * exceed max_chars chars.
470 int max_chars, int same)
508 if (ch_count < max_chars && ch != 0xff)
513 output_ch, max_chars);
516 if (ch_count > max_chars) {
424 input_keycode_to_ansi364(struct input_config *config, int keycode, char output_ch[], int max_chars) argument
468 input_keycodes_to_ascii(struct input_config *config, int keycode[], int num_keycodes, char output_ch[], int max_chars, int same) argument
[all...]
/u-boot/boot/
H A Dscene_textline.c19 int scene_textline(struct scene *scn, const char *name, uint id, uint max_chars, argument
26 if (max_chars >= EXPO_MAX_CHARS)
35 if (!abuf_realloc(&tline->buf, max_chars + 1))
39 tline->pos = max_chars;
40 tline->max_chars = max_chars;
75 txt->font_size, tline->max_chars, &bbox);
224 cli_cread_init(&scn->cls, abuf_data(&tline->buf), tline->max_chars);
H A Dexpo_build.c295 u32 max_chars; local
301 ret = ofnode_read_u32(node, "max-chars", &max_chars);
305 ret = scene_textline(scn, name, id, max_chars, &ted);
H A Dcedit.c420 if (len >= tline->max_chars)
572 if (value && strlen(value) >= tline->max_chars)
/u-boot/include/
H A Dexpo.h331 * @max_chars: Maximum number of characters allowed
339 uint max_chars; member in struct:scene_obj_textline
584 * @max_chars: Maximum length of the textline in characters
588 int scene_textline(struct scene *scn, const char *name, uint id, uint max_chars,

Completed in 62 milliseconds