Lines Matching refs:n_commands
2507 int n_commands; /* # of command. */ in execute() local
2531 for (n_commands = 1, i = 0; VEC_iterate (const_char_p, argbuf, i, arg); i++) in execute()
2533 n_commands++; in execute()
2536 commands = (struct command *) alloca (n_commands * sizeof (struct command)); in execute()
2553 for (n_commands = 1, i = 0; VEC_iterate (const_char_p, argbuf, i, arg); i++) in execute()
2561 commands[n_commands].prog = VEC_index (const_char_p, argbuf, i + 1); in execute()
2562 commands[n_commands].argv in execute()
2564 string = find_a_file (&exec_prefixes, commands[n_commands].prog, in execute()
2567 commands[n_commands].argv[0] = string; in execute()
2568 n_commands++; in execute()
2580 for (i = 0; i < n_commands; i++) in execute()
2620 if (i + 1 != n_commands) in execute()
2652 for (i = 0; i < n_commands; i++) in execute()
2682 for (i = 0; i < n_commands; i++) in execute()
2689 ((i + 1 == n_commands ? PEX_LAST : 0) in execute()
2717 statuses = (int *) alloca (n_commands * sizeof (int)); in execute()
2718 if (!pex_get_status (pex, n_commands, statuses)) in execute()
2723 times = (struct pex_time *) alloca (n_commands * sizeof (struct pex_time)); in execute()
2724 if (!pex_get_times (pex, n_commands, times)) in execute()
2730 for (i = 0; i < n_commands; ++i) in execute()