Lines Matching refs:pipe_list
4609 struct pipe *pipe_list; in parse_group() local
4683 pipe_list = parse_stream(&as_string, &heredoc_cnt, input, endch); in parse_group()
4691 if (!pipe_list || pipe_list == ERR_PTR) { in parse_group()
4696 "parse_stream returned %p\n", pipe_list); in parse_group()
4713 cmd2->group = pipe_list; in parse_group()
4720 pipe_list = new_pipe(); in parse_group()
4721 pipe_list->cmds = cmd2; in parse_group()
4722 pipe_list->num_cmds = 1; in parse_group()
4726 command->group = pipe_list; in parse_group()
7512 struct pipe *pipe_list; in parse_and_run_stream() local
7520 pipe_list = parse_stream(NULL, NULL, inp, end_trigger); in parse_and_run_stream()
7521 if (!pipe_list || pipe_list == ERR_PTR) { /* EOF/error */ in parse_and_run_stream()
7525 if (pipe_list == ERR_PTR && end_trigger == ';') { in parse_and_run_stream()
7538 if (!pipe_list && empty) in parse_and_run_stream()
7542 debug_print_tree(pipe_list, 0); in parse_and_run_stream()
7544 run_and_free_list(pipe_list); in parse_and_run_stream()