Lines Matching refs:sep
187 char *sep; /* end of token (separator) in cmdbuf */ in cli_simple_run_command() local
223 for (inquotes = 0, sep = str; *sep; sep++) { in cli_simple_run_command()
224 if ((*sep == '\'') && in cli_simple_run_command()
225 (*(sep - 1) != '\\')) in cli_simple_run_command()
229 (*sep == ';') && /* separator */ in cli_simple_run_command()
230 (sep != str) && /* past string start */ in cli_simple_run_command()
231 (*(sep - 1) != '\\')) /* and NOT escaped */ in cli_simple_run_command()
239 if (*sep) { in cli_simple_run_command()
240 str = sep + 1; /* start of command for next pass */ in cli_simple_run_command()
241 *sep = '\0'; in cli_simple_run_command()
243 str = sep; /* no more commands for next pass */ in cli_simple_run_command()