Home
last modified time | relevance | path

Searched refs:Stream (Results 26 – 50 of 149) sorted by path

123456

/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DBufferStream.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\CannotAttachException;
14 * @package GuzzleHttp\Stream
H A DCachingStream.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\SeekException;
7 * Stream decorator that can cache previously read bytes from a sequentially
14 /** @var StreamInterface Stream being wrapped */
23 * @param StreamInterface $stream Stream to cache
31 $this->stream = $target ?: new Stream(fopen('php://temp', 'r+'));
H A DDroppingStream.php2 namespace GuzzleHttp\Stream;
5 * Stream decorator that begins dropping data once the size of the underlying
H A DFnStream.php2 namespace GuzzleHttp\Stream;
57 * @param StreamInterface $stream Stream to decorate
H A DGuzzleStreamWrapper.php2 namespace GuzzleHttp\Stream;
H A DInflateStream.php2 namespace GuzzleHttp\Stream;
25 $this->stream = new Stream($resource);
H A DLazyOpenStream.php2 namespace GuzzleHttp\Stream;
35 return Stream::factory(Utils::open($this->filename, $this->mode));
H A DLimitStream.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\SeekException;
20 * @param StreamInterface $stream Stream to wrap
H A DMetadataStreamInterface.php2 namespace GuzzleHttp\Stream;
H A DNoSeekStream.php2 namespace GuzzleHttp\Stream;
5 * Stream decorator that prevents a stream from being seeked
H A DNullStream.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\CannotAttachException;
H A DPumpStream.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\CannotAttachException;
39 * @param array $options Stream options:
H A DStream.php2 namespace GuzzleHttp\Stream;
7 class Stream implements StreamInterface class
42 * @return Stream
97 * @param resource $stream Stream resource to wrap.
105 throw new \InvalidArgumentException('Stream must be a resource');
H A DStreamDecoratorTrait.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\CannotAttachException;
7 * Stream decorator trait
13 * @param StreamInterface $stream Stream to decorate
H A DStreamInterface.php2 namespace GuzzleHttp\Stream;
28 * an unusable state. If you wish to use a Stream object as a PHP stream
29 * but keep the Stream object in a consistent state, use
30 * {@see GuzzleHttp\Stream\GuzzleStreamWrapper::getResource}.
33 * if the Stream object did not utilize an underlying
86 * @param int $offset Stream offset
H A DUtils.php2 namespace GuzzleHttp\Stream;
4 use GuzzleHttp\Stream\Exception\SeekException;
51 * @param StreamInterface $stream Stream to read
88 * @param StreamInterface $source Stream to read from
89 * @param StreamInterface $dest Stream to write to
122 * Calculate a hash of a Stream
124 * @param StreamInterface $stream Stream to calculate the hash for
156 * @param StreamInterface $stream Stream to read from
183 * Alias of GuzzleHttp\Stream\Stream
[all...]
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/Exception/
H A DCannotAttachException.php2 namespace GuzzleHttp\Stream\Exception;
H A DSeekException.php2 namespace GuzzleHttp\Stream\Exception;
4 use GuzzleHttp\Stream\StreamInterface;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DAppendStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\AppendStream;
5 use GuzzleHttp\Stream\Exception\CannotAttachException;
6 use GuzzleHttp\Stream\Stream; alias
18 $s = $this->getMockBuilder('GuzzleHttp\Stream\StreamInterface')
35 $s = $this->getMockBuilder('GuzzleHttp\Stream\StreamInterface')
53 Stream::factory('foo'),
54 Stream::factory('bar'),
55 Stream
[all...]
H A DAsyncReadStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\AsyncReadStream;
5 use GuzzleHttp\Stream\BufferStream;
6 use GuzzleHttp\Stream\FnStream;
7 use GuzzleHttp\Stream\Stream; alias
19 Stream::factory(),
29 Stream::factory(),
36 $a = new AsyncReadStream(Stream::factory(), [
144 $this->assertInstanceOf('GuzzleHttp\Stream\BufferStrea
[all...]
H A DBufferStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\BufferStream;
5 use GuzzleHttp\Stream\Exception\CannotAttachException;
H A DCachingStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\Stream; alias
5 use GuzzleHttp\Stream\CachingStream;
6 use GuzzleHttp\Stream\Utils;
12 * @covers GuzzleHttp\Stream\CachingStream
19 /** @var Stream */
24 $this->decorated = Stream::factory('testing');
36 $body = Stream::factory('test');
55 $a = Stream
[all...]
H A DDroppingStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\BufferStream;
5 use GuzzleHttp\Stream\DroppingStream;
H A DFnStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
5 use GuzzleHttp\Stream\Stream; alias
6 use GuzzleHttp\Stream\FnStream;
10 * @covers GuzzleHttp\Stream\FnStream
56 $a = Stream::factory('foo');
83 $a = Stream::factory('foo');
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/Exception/
H A DSeekExceptionTest.php2 namespace GuzzleHttp\Tests\Stream\Exception;
4 use GuzzleHttp\Stream\Exception\SeekException;
5 use GuzzleHttp\Stream\Stream; alias
12 $s = Stream::factory('foo');

123456