Home
last modified time | relevance | path

Searched refs:remoteStream (Results 1 – 2 of 2) sorted by relevance

/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DCachingStream.php18 private $remoteStream; variable in GuzzleHttp\\Psr7\\CachingStream
33 $this->remoteStream = $stream;
39 $remoteSize = $this->remoteStream->getSize();
60 $size = $this->remoteStream->getSize();
74 while ($diff > 0 && !$this->remoteStream->eof()) {
96 $remoteData = $this->remoteStream->read(
119 $overflow = (strlen($string) + $this->tell()) - $this->remoteStream->tell();
129 return $this->stream->eof() && $this->remoteStream->eof();
137 $this->remoteStream->close() && $this->stream->close();
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DCachingStream.php15 private $remoteStream; variable in GuzzleHttp\\Stream\\CachingStream
30 $this->remoteStream = $stream;
36 return max($this->stream->getSize(), $this->remoteStream->getSize());
79 $remoteData = $this->remoteStream->read(
102 $overflow = (strlen($string) + $this->tell()) - $this->remoteStream->tell();
112 return $this->stream->eof() && $this->remoteStream->eof();
120 $this->remoteStream->close() && $this->stream->close();