Lines Matching full:line
35 * \brief command line test interface
80 * return pointer to start of new command line
420 { cmd_exit, "exit", NULL, "exit command line" },
558 int cli_interpret(const char *line) in cli_interpret() argument
564 cli_parse_args(line, &arg); in cli_interpret()
595 char line[80]; in cli_main_entry() local
604 if (linelen >= sizeof(line)) in cli_main_entry()
620 line[linelen] = 0; in cli_main_entry()
621 p = cli_process_line(line); in cli_main_entry()
637 if (ch >= ' ' && ch < 127 && linelen < sizeof(line) - 1) { in cli_main_entry()
638 line[linelen++] = ch; in cli_main_entry()