Lines Matching refs:pipes
154 $proc = proc_open($cmd, $des, $pipes, $cwd); // shell経由(bypass_shell=false)
157 $proc = proc_open($cmd, $des, $pipes, $cwd, null, ['bypass_shell' => true]);
161 return [$proc, $pipes];
352 [$proc, $pipes] = $this->openProcess($exe, [$filePath], $workPath);
355 …while (($line = fgets($pipes[1])) !== false) { echo "data: " . $this->outUTF8($line) . "\n\n"; @ob…
356 fclose($pipes[1]);
357 …while (($line = fgets($pipes[2])) !== false) { echo "data: ERROR: " . $this->outUTF8($line) . "\n\…
358 fclose($pipes[2]);
375 [$proc, $pipes] = $this->openProcess($makeenv, [$filePath], $workPath);
377 …while (($line = fgets($pipes[1])) !== false) { echo "data: " . $this->outUTF8($line) . "\n\n"; @ob…
378 fclose($pipes[1]);
379 …while (($line = fgets($pipes[2])) !== false) { echo "data: ERROR: " . $this->outUTF8($line) . "\n\…
380 fclose($pipes[2]);
390 [$proc, $pipes] = $this->openProcess($verifier, ['-q','-l',$rel], $workPath);
392 …while (($line = fgets($pipes[1])) !== false) { echo "data: " . $this->outUTF8($line) . "\n\n"; @ob…
393 fclose($pipes[1]);
394 …while (($line = fgets($pipes[2])) !== false) { echo "data: ERROR: " . $this->outUTF8($line) . "\n\…
395 fclose($pipes[2]);