Lines Matching refs:cwd
54 private $cwd; variable in Symfony\\Component\\Process\\Process
136 …* @param string|null $cwd The working directory or null to use the working dir of the c…
144 …public function __construct($commandline, $cwd = null, array $env = null, $input = null, $timeout … argument
151 $this->cwd = $cwd;
157 … if (null === $this->cwd && (\defined('ZEND_THREAD_SAFE') || '\\' === \DIRECTORY_SEPARATOR)) {
158 $this->cwd = getcwd();
335 if (!is_dir($this->cwd)) {
339 … @proc_open($commandline, $descriptors, $this->processPipes->pipes, $this->cwd, $envPairs, $this->…
1087 if (null === $this->cwd) {
1093 return $this->cwd;
1099 * @param string $cwd The new working directory
1103 public function setWorkingDirectory($cwd) argument
1105 $this->cwd = $cwd;