Home | History | Annotate | Download | only in exec

Lines Matching full:process

52 	// Env specifies the environment of the process.
53 // If Env is nil, Run uses the current process's environment.
58 // calling process's current directory.
61 // Stdin specifies the process's standard input.
62 // If Stdin is nil, the process reads from the null device (os.DevNull).
63 // If Stdin is an *os.File, the process's standard input is connected
72 // Stdout and Stderr specify the process's standard output and error.
83 // new process. It does not include standard input, standard output, or
94 // Process is the underlying process, once started.
95 Process *os.Process
97 // ProcessState contains information about an exited process,
306 if c.Process != nil {
323 c.Process, err = os.StartProcess(c.Path, c.argv(), &os.ProcAttr{
368 // copying from c.Stdin into the process's standard input
373 if c.Process == nil {
380 state, err := c.Process.Wait()
438 if c.Process != nil {
439 return nil, errors.New("exec: StdinPipe after process started")
480 if c.Process != nil {
481 return nil, errors.New("exec: StdoutPipe after process started")
505 if c.Process != nil {
506 return nil, errors.New("exec: StderrPipe after process started")