Home
last modified time | relevance | path

Searched refs:StreamInterface (Results 1 – 25 of 56) sorted by relevance

123

/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A Dfunctions.php7 use Psr\Http\Message\StreamInterface; alias
76 * @return StreamInterface
187 * @param StreamInterface $stream Stream to read
197 function copy_to_string(StreamInterface $stream, $maxLen = -1)
206 * @param StreamInterface $source Stream to read from
207 * @param StreamInterface $dest Stream to write to
215 function copy_to_stream(StreamInterface $source, StreamInterface $dest, $maxLen = -1)
226 * @param StreamInterface $stream Stream to calculate the hash for
236 function hash(StreamInterface $stream, $algo, $rawOutput = false)
244 * @param StreamInterface $stream Stream to read from
[all …]
H A DUtils.php7 use Psr\Http\Message\StreamInterface; alias
40 * @param StreamInterface $source Stream to read from
41 * @param StreamInterface $dest Stream to write to
47 … public static function copyToStream(StreamInterface $source, StreamInterface $dest, $maxLen = -1)
75 * @param StreamInterface $stream Stream to read
83 public static function copyToString(StreamInterface $stream, $maxLen = -1)
119 * @param StreamInterface $stream Stream to calculate the hash for
242 * @param StreamInterface $stream Stream to read from
247 public static function readLine(StreamInterface $stream, $maxLength = null)
299 * @return StreamInterface
[all …]
H A DInflateStream.php5 use Psr\Http\Message\StreamInterface; alias
20 class InflateStream implements StreamInterface
24 public function __construct(StreamInterface $stream)
37 * @param StreamInterface $stream
42 private function getLengthOfPossibleFilenameHeader(StreamInterface $stream, $header)
H A DStreamWrapper.php5 use Psr\Http\Message\StreamInterface; alias
17 /** @var StreamInterface */
26 * @param StreamInterface $stream The stream to get a resource for
32 public static function getResource(StreamInterface $stream)
51 * @param StreamInterface $stream
55 public static function createStreamContext(StreamInterface $stream)
H A DStreamDecoratorTrait.php5 use Psr\Http\Message\StreamInterface; alias
10 * @property StreamInterface stream
15 * @param StreamInterface $stream Stream to decorate
17 public function __construct(StreamInterface $stream)
28 * @return StreamInterface
144 * @return StreamInterface
H A DCachingStream.php5 use Psr\Http\Message\StreamInterface; alias
13 class CachingStream implements StreamInterface
17 /** @var StreamInterface Stream being wrapped */
26 …* @param StreamInterface $stream Stream to cache. The cursor is assumed to be at the beginning of …
27 * @param StreamInterface $target Optionally specify where data is cached
30 StreamInterface $stream,
31 StreamInterface $target = null
H A DDroppingStream.php5 use Psr\Http\Message\StreamInterface; alias
13 class DroppingStream implements StreamInterface
20 * @param StreamInterface $stream Underlying stream to decorate.
23 public function __construct(StreamInterface $stream, $maxLength)
H A DAppendStream.php5 use Psr\Http\Message\StreamInterface; alias
14 class AppendStream implements StreamInterface
16 /** @var StreamInterface[] Streams being decorated */
24 * @param StreamInterface[] $streams Streams to decorate. Each stream must
47 * @param StreamInterface $stream Stream to append. Must be readable.
51 public function addStream(StreamInterface $stream)
H A DLazyOpenStream.php5 use Psr\Http\Message\StreamInterface; alias
13 class LazyOpenStream implements StreamInterface
36 * @return StreamInterface
H A DFnStream.php5 use Psr\Http\Message\StreamInterface; alias
15 class FnStream implements StreamInterface
73 * @param StreamInterface $stream Stream to decorate
78 public static function decorate(StreamInterface $stream, array $methods)
H A DLimitStream.php5 use Psr\Http\Message\StreamInterface; alias
12 class LimitStream implements StreamInterface
23 * @param StreamInterface $stream Stream to wrap
30 StreamInterface $stream,
H A DUploadedFile.php6 use Psr\Http\Message\StreamInterface; alias
57 * @var StreamInterface|null
62 * @param StreamInterface|string|resource $streamOrFile
98 } elseif ($streamOrFile instanceof StreamInterface) {
238 if ($this->stream instanceof StreamInterface) {
H A DNoSeekStream.php5 use Psr\Http\Message\StreamInterface; alias
12 class NoSeekStream implements StreamInterface
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DUtils.php51 * @param StreamInterface $stream Stream to read
56 public static function copyToString(StreamInterface $stream, $maxLen = -1)
88 * @param StreamInterface $source Stream to read from
89 * @param StreamInterface $dest Stream to write to
94 StreamInterface $source,
95 StreamInterface $dest,
124 * @param StreamInterface $stream Stream to calculate the hash for
132 StreamInterface $stream,
156 * @param StreamInterface $stream Stream to read from
162 public static function readline(StreamInterface
[all...]
H A DCachingStream.php10 class CachingStream implements StreamInterface
14 /** @var StreamInterface Stream being wrapped */
23 * @param StreamInterface $stream Stream to cache
24 * @param StreamInterface $target Optionally specify where data is cached
27 StreamInterface $stream,
28 StreamInterface $target = null
H A DDroppingStream.php8 class DroppingStream implements StreamInterface
15 * @param StreamInterface $stream Underlying stream to decorate.
18 public function __construct(StreamInterface $stream, $maxLength)
H A DAppendStream.php11 class AppendStream implements StreamInterface
13 /** @var StreamInterface[] Streams being decorated */
22 * @param StreamInterface[] $streams Streams to decorate. Each stream must
45 * @param StreamInterface $stream Stream to append. Must be readable.
49 public function addStream(StreamInterface $stream)
H A DStreamDecoratorTrait.php8 * @property StreamInterface stream
13 * @param StreamInterface $stream Stream to decorate
15 public function __construct(StreamInterface $stream)
136 * @return StreamInterface
H A DGuzzleStreamWrapper.php12 /** @var StreamInterface */
21 * @param StreamInterface $stream The stream to get a resource for
26 public static function getResource(StreamInterface $stream)
H A DInflateStream.php15 class InflateStream implements StreamInterface
19 public function __construct(StreamInterface $stream)
H A DFnStream.php10 class FnStream implements StreamInterface
57 * @param StreamInterface $stream Stream to decorate
62 public static function decorate(StreamInterface $stream, array $methods)
H A DLazyOpenStream.php8 class LazyOpenStream implements StreamInterface
31 * @return StreamInterface
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/Exception/
H A DSeekException.php4 use GuzzleHttp\Stream\StreamInterface; alias
13 public function __construct(StreamInterface $stream, $pos = 0, $msg = '')
21 * @return StreamInterface
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Exception/
H A DSeekException.php4 use Psr\Http\Message\StreamInterface; alias
13 public function __construct(StreamInterface $stream, $pos = 0, $msg = '')
21 * @return StreamInterface
/plugin/authgooglesheets/vendor/psr/http-message/src/
H A DMessageInterface.php169 * @return StreamInterface Returns the body as a stream.
182 * @param StreamInterface $body Body.
186 public function withBody(StreamInterface $body);

123