Home
last modified time | relevance | path

Searched refs:stream (Results 76 – 100 of 459) sorted by last modified time

12345678910>>...19

/plugin/davcal/vendor/sabre/vobject/
H A DChangeLog.md259 * Fixed: Issue #54. Parsing a stream of multiple vcards separated by more than
385 * Added: MimeDir parser can now continue parsing with the same stream buffer.
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Splitter/
H A DVCardTest.php11 $stream = fopen('php://memory','r+');
12 fwrite($stream, $data);
13 rewind($stream);
14 return $stream;
/plugin/davcal/vendor/sabre/dav/bin/
H A Dsabredav.php7 protected $stream; variable in CliLog
11 $this->stream = fopen('php://stdout','w');
16 fwrite($this->stream, $msg . "\n");
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DCorePlugin.php87 $stream = fopen('php://temp', 'r+');
88 fwrite($stream, $body);
89 rewind($stream);
90 $body = $stream;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRC4.php104 private $stream; variable in phpseclib3\\Crypt\\RC4
260 $this->stream = [];
261 $this->stream[self::DECRYPT] = $this->stream[self::ENCRYPT] = [
284 $stream = &$this->stream[$mode];
286 $i = &$stream[0];
287 $j = &$stream[1];
288 $keyStream = &$stream[2];
290 $i = $stream[0];
291 $j = $stream[1];
292 $keyStream = $stream[2];
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DUPGRADING.md209 expectations, and if so, change the actual stream body that is being
446 `GuzzleHttp\Message\ResponseInterface` object that contains a body stream
447 referencing an open PHP HTTP stream.
454 $stream = $factory->fromRequest($request);
455 $data = $stream->read(1024);
458 $response = $client->get('/', ['stream' => true]);
459 // Read some data off of the stream in the response body
636 allow developers to more easily extend and decorate stream behavior.
H A DCHANGELOG.md127 * Bug fix: defer sink stream opening in StreamHandler.
429 expectations, and if so, change the actual stream body that is being
458 * No longer using `request_fulluri` in stream adapter proxies.
487 * Fixed an issue in the CurlFactory that caused setting the `stream=false`
505 "stream" set to true in parallel using the MultiAdapter.
609 * Added the ability to specify custom stream context options to the stream
634 * Sending PHP stream requests no longer forces `HTTP/1.0`
710 * Bug fix: Moving stream factory before send event to before building the stream. See #353
907 …x: Removed code that attempted to determine the size of a stream when data is written to the stream
917 * Added the ability to create a custom stream class when using a stream factory
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Exception/
H A DSeekException.php11 private $stream; variable in GuzzleHttp\\Exception\\SeekException
13 public function __construct(StreamInterface $stream, $pos = 0, $msg = '') argument
15 $this->stream = $stream;
25 return $this->stream;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DCachingStream.php30 StreamInterface $stream, argument
33 $this->remoteStream = $stream;
45 return max($this->stream->getSize(), $remoteSize);
69 $diff = $byte - $this->stream->getSize();
76 $diff = $byte - $this->stream->getSize();
80 $this->stream->seek($byte);
87 $data = $this->stream->read($length);
107 $this->stream->write($remoteData);
124 return $this->stream->write($string);
129 return $this->stream->eof() && $this->remoteStream->eof();
[all …]
H A DFnStream.php73 * @param StreamInterface $stream Stream to decorate
78 public static function decorate(StreamInterface $stream, array $methods) argument
83 $methods[$diff] = [$stream, $diff];
H A DMessageTrait.php22 private $stream; variable
120 if (!$this->stream) {
121 $this->stream = Utils::streamFor('');
124 return $this->stream;
129 if ($body === $this->stream) {
134 $new->stream = $body;
H A DRequest.php55 $this->stream = Utils::streamFor($body);
H A DResponse.php104 $this->stream = Utils::streamFor($body);
H A DStream.php25 private $stream; variable in GuzzleHttp\\Psr7\\Stream
49 if (!is_resource($stream)) {
61 $this->stream = $stream;
91 if (!isset($this->stream)) {
106 if (isset($this->stream)) {
116 if (!isset($this->stream)) {
120 $result = $this->stream;
121 unset($this->stream);
134 if (!isset($this->stream)) {
169 if (!isset($this->stream)) {
[all …]
H A DAppendStream.php29 foreach ($streams as $stream) {
30 $this->addStream($stream);
53 if (!$stream->isReadable()) {
58 if (!$stream->isSeekable()) {
62 $this->streams[] = $stream;
80 foreach ($this->streams as $stream) {
81 $stream->close();
99 foreach ($this->streams as $stream) {
100 $stream->detach();
126 $s = $stream->getSize();
[all …]
H A DStreamDecoratorTrait.php19 $this->stream = $stream;
34 return $this->stream;
78 $this->stream->close();
88 return $this->stream->detach();
93 return $this->stream->getSize();
98 return $this->stream->eof();
103 return $this->stream->tell();
108 return $this->stream->isReadable();
113 return $this->stream->isWritable();
118 return $this->stream->isSeekable();
[all …]
H A DStreamWrapper.php18 private $stream; variable in GuzzleHttp\\Psr7\\StreamWrapper
36 if ($stream->isReadable()) {
38 } elseif ($stream->isWritable()) {
51 * @param StreamInterface $stream
58 'guzzle' => ['stream' => $stream]
88 return $this->stream->read($count);
98 return $this->stream->tell();
103 return $this->stream->eof();
108 $this->stream->seek($offset, $whence);
115 $stream = clone($this->stream);
[all …]
H A DDroppingStream.php20 * @param StreamInterface $stream Underlying stream to decorate.
23 public function __construct(StreamInterface $stream, $maxLength) argument
25 $this->stream = $stream;
31 $diff = $this->maxLength - $this->stream->getSize();
40 return $this->stream->write($string);
43 return $this->stream->write(substr($string, 0, $diff));
H A DInflateStream.php24 public function __construct(StreamInterface $stream) argument
27 $header = $stream->read(10);
28 $filenameHeaderLength = $this->getLengthOfPossibleFilenameHeader($stream, $header);
30 $stream = new LimitStream($stream, -1, 10 + $filenameHeaderLength);
31 $resource = StreamWrapper::getResource($stream);
33 …$this->stream = $stream->isSeekable() ? new Stream($resource) : new NoSeekStream(new Stream($resou…
37 * @param StreamInterface $stream
42 private function getLengthOfPossibleFilenameHeader(StreamInterface $stream, $header) argument
49 while ($stream->read(1) !== chr(0)) {
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md16 …ext/extra info to exceptions thrown when a StreamHandler cannot open its stream to avoid completel…
272 * Added StreamHandler::getUrl to retrieve the stream's URL
281 …l not close streams automatically that it does not own. If you pass in a stream (not a path/url), …
513 * Fixed LogstashFormatter to be usable with stream handlers
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DStreamHandler.php35 protected $stream; variable in Monolog\\Handler\\StreamHandler
71 if (is_resource($stream)) {
72 $this->stream = $stream;
91 fclose($this->stream);
93 $this->stream = null;
104 return $this->stream;
149 $this->stream = $stream;
152 $stream = $this->stream;
153 if (!is_resource($stream)) {
159 flock($stream, LOCK_EX);
[all …]
/plugin/authgooglesheets/
H A Dcomposer.lock480 "stream",
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DStreamHandler.php97 $stream, argument
107 list($stream, $headers) = $this->checkDecode($options, $headers, $stream);
108 $stream = Psr7\stream_for($stream);
109 $sink = $stream;
112 $sink = $this->createSink($stream, $options);
129 if ($sink !== $stream) {
131 $stream,
145 return $stream;
165 $stream = new Psr7\InflateStream(
166 Psr7\stream_for($stream)
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md28 - Return `null` in caching stream size if remote size is `null`
52 - Issue when creating stream from `php://input` and curl-ext is not installed
63 - Converting a non-seekable stream to a string
96 - Fixed readable/writable detection for certain stream modes (#248)
125 - Clarify exception message when stream is detached
134 - `InflateStream` preserves `isSeekable` attribute of the underlying stream
H A DREADME.md13 This package comes with a number of stream implementations and stream
71 $stream->read(1024);
72 echo $stream->tell();
75 $stream->seek(0);
76 echo $stream->tell();
136 the gzip header, converts the provided stream to a PHP stream resource,
138 to a Guzzle stream resource to be used as a Guzzle stream.
178 echo $stream->tell();
251 $this->stream = $stream;
292 PSR-7 stream as a PHP stream resource.
[all …]

12345678910>>...19