Lines Matching refs:sep
178 char *sep; /* end of token (separator) in cmdbuf */ in cli_simple_run_command() local
214 for (inquotes = 0, sep = str; *sep; sep++) { in cli_simple_run_command()
215 if ((*sep == '\'') && in cli_simple_run_command()
216 (*(sep - 1) != '\\')) in cli_simple_run_command()
220 (*sep == ';') && /* separator */ in cli_simple_run_command()
221 (sep != str) && /* past string start */ in cli_simple_run_command()
222 (*(sep - 1) != '\\')) /* and NOT escaped */ in cli_simple_run_command()
230 if (*sep) { in cli_simple_run_command()
231 str = sep + 1; /* start of command for next pass */ in cli_simple_run_command()
232 *sep = '\0'; in cli_simple_run_command()
234 str = sep; /* no more commands for next pass */ in cli_simple_run_command()