Lines Matching refs:stdout
68 private $stdout;
583 if (false === $ret = stream_get_contents($this->stdout, -1, 0)) {
605 $latest = stream_get_contents($this->stdout, -1, $this->incrementalOutputOffset);
606 $this->incrementalOutputOffset = ftell($this->stdout);
635 while (null !== $this->callback || ($yieldOut && !feof($this->stdout)) || ($yieldErr && !feof($this->stderr))) {
637 $out = stream_get_contents($this->stdout, -1, $this->incrementalOutputOffset);
643 $this->incrementalOutputOffset = ftell($this->stdout);
680 ftruncate($this->stdout, 0);
681 fseek($this->stdout, 0);
955 fseek($this->stdout, 0, \SEEK_END);
956 fwrite($this->stdout, $line);
957 fseek($this->stdout, $this->incrementalOutputOffset);
1479 $this->stdout = fopen('php://temp/maxmemory:'.(1024 * 1024), 'w+');