Lines Matching refs:command
470 start_child (char *command, HANDLE in, HANDLE out) in start_child() argument
485 (LPTSTR) command, in start_child()
555 char *command = (char *) malloc (len + 10); in build_command() local
559 if (! command) in build_command()
562 return command; in build_command()
565 p = command; in build_command()
584 if (p > command) in build_command()
587 return command; in build_command()
604 char *command; in piped_child() local
607 command = build_command (argv); in piped_child()
608 if (! command) in piped_child()
617 child = start_child (command, pipein[0], pipeout[1]); in piped_child()
618 free (command); in piped_child()
650 char *command; local
665 if ((command = build_command (prog)) == NULL)
667 child = start_child (command, oldfd_handle, pipe[1]);
668 free (command);
680 if ((command = build_command (prog)) == NULL)
682 child = start_child (command, pipe[0], oldfd_handle);
683 free (command);