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