Lines Matching refs:proc
154 $proc = proc_open($cmd, $des, $pipes, $cwd); // shell経由(bypass_shell=false)
157 $proc = proc_open($cmd, $des, $pipes, $cwd, null, ['bypass_shell' => true]);
160 if (!is_resource($proc)) return [null, []];
161 return [$proc, $pipes];
352 [$proc, $pipes] = $this->openProcess($exe, [$filePath], $workPath);
353 …if (!$proc) { echo "data: ERROR: Failed to execute miz2prel.\n\n"; @ob_flush(); @flush(); return; }
359 proc_close($proc);
375 [$proc, $pipes] = $this->openProcess($makeenv, [$filePath], $workPath);
376 … if (!$proc) { echo "data: ERROR: Failed to execute makeenv.\n\n"; @ob_flush(); @flush(); return; }
381 proc_close($proc);
390 [$proc, $pipes] = $this->openProcess($verifier, ['-q','-l',$rel], $workPath);
391 …if (!$proc) { echo "data: ERROR: Failed to execute verifier.\n\n"; @ob_flush(); @flush(); return; }
396 proc_close($proc);