Home
last modified time | relevance | path

Searched refs:INPUT_BUFFER_SIZE (Results 1 – 3 of 3) sorted by relevance

/DragonOS-0.1.5/user/apps/shell/
Dshell.c26 char history_commands[MEM_HISTORY][INPUT_BUFFER_SIZE];
28 char real_history_commands[MEM_HISTORY][INPUT_BUFFER_SIZE];
41 unsigned char input_buffer[INPUT_BUFFER_SIZE] = {0}; in main_loop()
57 memset(input_buffer, 0, INPUT_BUFFER_SIZE); in main_loop()
229 if (count >= INPUT_BUFFER_SIZE - 1) in shell_readline()
Dcmd.c515 unsigned char input_buffer[INPUT_BUFFER_SIZE] = {0}; in shell_cmd_about()
601 while (index < INPUT_BUFFER_SIZE && buf[index] == ' ') in parse_command()
605 for (int i = index; i < (INPUT_BUFFER_SIZE - 1); ++i) in parse_command()
620 for (int i = 0; i < *argc && index < INPUT_BUFFER_SIZE; ++i) in parse_command()
624 while (index < (INPUT_BUFFER_SIZE - 1) && buf[index] && buf[index] != ' ') in parse_command()
629 while (index < INPUT_BUFFER_SIZE && buf[index] == ' ') in parse_command()
Dcmd.h5 #define INPUT_BUFFER_SIZE 512 macro