Lines Matching full:process
5 # Logic to spawn a sub-process and interact with its stdio.
19 """Represents the stdio of a freshly created sub-process. Commands may be
20 sent to the process, and responses waited for.
27 """Spawn (fork/exec) the sub-process.
32 cwd: the directory to run the process in, or None for no change.
76 """Send unix signal "sig" to the child process.
88 """Determine whether the child process is still running.
94 Boolean indicating whether process is alive.
108 """Send data to the sub-process's stdin.
111 data: The data to send to the process.
120 """Wait for the sub-process to emit specific data.
122 This function waits for the process to emit one pattern from the
127 see in the sub-process' stdout.
130 The index within the patterns array of the pattern the process
134 Timeout, if the process did not emit any of the patterns within
190 """Close the stdio connection to the sub-process.
192 This also waits a reasonable time for the sub-process to stop running.