Searched refs:INPUT_BUFFER_SIZE (Results 1 – 3 of 3) sorted by relevance
26 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()248 if (count >= INPUT_BUFFER_SIZE - 1) in shell_readline()
524 unsigned char input_buffer[INPUT_BUFFER_SIZE] = {0}; in shell_cmd_about()610 while (index < INPUT_BUFFER_SIZE && buf[index] == ' ') in parse_command()617 for (int i = index; i < (INPUT_BUFFER_SIZE - 1); ++i) in parse_command()632 for (int i = 0; i < *argc && index < INPUT_BUFFER_SIZE; ++i) in parse_command()636 while (index < (INPUT_BUFFER_SIZE - 1) && buf[index] && buf[index] != ' ') in parse_command()641 while (index < INPUT_BUFFER_SIZE && buf[index] == ' ') in parse_command()
5 #define INPUT_BUFFER_SIZE 512 macro