Lines Matching refs:to

80       // from its argument to such files because it thinks they already had one.
182 // executable path, but since we use an explicit executable, we have to add
188 // Windows wants a command line, not an array of args, to pass to the new
189 // process. We have to concatenate them all, while quoting the args that
193 // The pointer to the environment block for the new process.
198 // null-terminated strings. Convert the array of environment variables to
204 MakeErrMsg(ErrMsg, "Unable to convert environment variable to UTF-16");
237 // If stdout and stderr should go to the same place, redirect stderr
238 // to the handle already open for stdout.
244 MakeErrMsg(ErrMsg, "can't dup stderr to stdout");
269 std::string("Unable to convert application name to UTF-16"));
277 std::string("Unable to convert command-line to UTF-16"));
288 // the handles we created for it to inherit.
307 // Assign the process to a job if a memory limit is defined.
325 MakeErrMsg(ErrMsg, std::string("Unable to set memory limit"));
358 // add one additional backslash to escape the quote.
394 assert(PI.Pid && "invalid pid to wait on, process not started?");
396 "invalid process handle to wait on, process not started?");
409 MakeErrMsg(ErrMsg, "Failed to terminate timed-out program");
411 // -2 indicates a crash or timeout as opposed to failure to execute.
436 // -2 indicates a crash or timeout as opposed to failure to execute.
444 // Pass 10(Warning) and 11(Error) to the callee as negative value.
515 // The documented max length of the command line passed to CreateProcess.