Lines Matching refs:n_commands
2910 int n_commands; /* # of command. */ in execute() local
2934 for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++) in execute()
2936 n_commands++; in execute()
2939 commands = (struct command *) alloca (n_commands * sizeof (struct command)); in execute()
2956 for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++) in execute()
2964 commands[n_commands].prog = argbuf[i + 1]; in execute()
2965 commands[n_commands].argv in execute()
2967 string = find_a_file (&exec_prefixes, commands[n_commands].prog, in execute()
2970 commands[n_commands].argv[0] = string; in execute()
2971 n_commands++; in execute()
2983 for (i = 0; i < n_commands; i++) in execute()
3023 if (i + 1 != n_commands) in execute()
3055 for (i = 0; i < n_commands; i++) in execute()
3085 for (i = 0; i < n_commands; i++) in execute()
3092 ((i + 1 == n_commands ? PEX_LAST : 0) in execute()
3120 statuses = (int *) alloca (n_commands * sizeof (int)); in execute()
3121 if (!pex_get_status (pex, n_commands, statuses)) in execute()
3126 times = (struct pex_time *) alloca (n_commands * sizeof (struct pex_time)); in execute()
3127 if (!pex_get_times (pex, n_commands, times)) in execute()
3133 for (i = 0; i < n_commands; ++i) in execute()