/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/ |
H A D | CachingStream.php | 53 public function seek($offset, $whence = SEEK_SET) argument 55 if ($whence == SEEK_SET) { 57 } elseif ($whence == SEEK_CUR) { 59 } elseif ($whence == SEEK_END) {
|
H A D | Stream.php | 196 public function seek($offset, $whence = SEEK_SET) argument 198 $whence = (int) $whence; 206 if (fseek($this->stream, $offset, $whence) === -1) { 208 . $offset . ' with whence ' . var_export($whence, true));
|
H A D | LimitStream.php | 73 public function seek($offset, $whence = SEEK_SET) argument 75 if ($whence !== SEEK_SET || $offset < 0) { 79 $whence
|
H A D | StreamWrapper.php | 106 public function stream_seek($offset, $whence) argument 108 $this->stream->seek($offset, $whence);
|
H A D | FnStream.php | 129 public function seek($offset, $whence = SEEK_SET) argument 131 call_user_func($this->_fn_seek, $offset, $whence);
|
H A D | StreamDecoratorTrait.php | 126 public function seek($offset, $whence = SEEK_SET) argument 128 $this->stream->seek($offset, $whence);
|
H A D | NoSeekStream.php | 16 public function seek($offset, $whence = SEEK_SET) argument
|
H A D | AppendStream.php | 153 public function seek($offset, $whence = SEEK_SET) argument 157 } elseif ($whence !== SEEK_SET) {
|
H A D | BufferStream.php | 84 public function seek($offset, $whence = SEEK_SET) argument
|
/plugin/findologicxmlexport/vendor/hoa/stream/IStream/ |
H A D | Pointable.php | 83 * @param int $whence Whence, use the self::SEEK_* constants. 86 public function seek($offset, $whence = self::SEEK_SET); argument
|
/plugin/authgooglesheets/vendor/psr/http-message/src/ |
H A D | StreamInterface.php | 80 * @param int $whence Specifies how the cursor position will be calculated 87 public function seek($offset, $whence = SEEK_SET); argument
|
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/ |
H A D | StreamInterface.php | 87 * @param int $whence Specifies how the cursor position will be calculated 89 * to the built-in PHP $whence values for `fseek()`. 97 public function seek($offset, $whence = SEEK_SET); argument
|
H A D | CachingStream.php | 44 public function seek($offset, $whence = SEEK_SET) argument 46 if ($whence == SEEK_SET) { 48 } elseif ($whence == SEEK_CUR) {
|
H A D | GuzzleStreamWrapper.php | 88 public function stream_seek($offset, $whence) argument 90 return $this->stream->seek($offset, $whence);
|
H A D | StreamDecoratorTrait.php | 118 public function seek($offset, $whence = SEEK_SET) argument 120 return $this->stream->seek($offset, $whence);
|
H A D | FnStream.php | 113 public function seek($offset, $whence = SEEK_SET) argument 115 return call_user_func($this->_fn_seek, $offset, $whence);
|
H A D | LimitStream.php | 75 public function seek($offset, $whence = SEEK_SET) argument 77 if ($whence !== SEEK_SET || $offset < 0) {
|
H A D | AppendStream.php | 140 public function seek($offset, $whence = SEEK_SET) argument 142 if (!$this->seekable || $whence !== SEEK_SET) {
|
H A D | NoSeekStream.php | 11 public function seek($offset, $whence = SEEK_SET) argument
|
H A D | NullStream.php | 60 public function seek($offset, $whence = SEEK_SET) argument
|
H A D | Stream.php | 227 public function seek($offset, $whence = SEEK_SET) argument 230 ? fseek($this->stream, $offset, $whence) === 0
|
/plugin/findologicxmlexport/vendor/hoa/stream/Wrapper/IWrapper/ |
H A D | Stream.php | 170 * @param int $whence Possible values: 179 public function stream_seek($offset, $whence = SEEK_SET); argument
|
/plugin/findologicxmlexport/vendor/hoa/file/ |
H A D | File.php | 329 * @param int $whence Whence, use the 333 public function seek($offset, $whence = Stream\IStream\Pointable::SEEK_SET) argument 335 return fseek($this->getStream(), $offset, $whence);
|
/plugin/findologicxmlexport/vendor/hoa/protocol/ |
H A D | Wrapper.php | 298 * @param int $whence Possible values: 307 public function stream_seek($offset, $whence = SEEK_SET) argument 309 return 0 === fseek($this->getStream(), $offset, $whence);
|
/plugin/findologicxmlexport/vendor/hoa/protocol/Test/Unit/ |
H A D | Wrapper.php | 429 public function _case_stream_seek_xxx($offset, $whence) argument 434 …$this->function->fseek = function ($resource, $offset, $whence) use (&$_resource, &$_offset, &$_wh… 437 $_whence = $whence; 439 return fseek($resource, $offset, $whence); 444 ->when($result = $wrapper->stream_seek($offset, $whence)) 453 ->integer($whence)
|