Home
last modified time | relevance | path

Searched refs:whence (Results 1 – 25 of 58) sorted by relevance

123

/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DCachingStream.php53 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 DStream.php196 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 DLimitStream.php73 public function seek($offset, $whence = SEEK_SET) argument
75 if ($whence !== SEEK_SET || $offset < 0) {
79 $whence
H A DStreamWrapper.php106 public function stream_seek($offset, $whence) argument
108 $this->stream->seek($offset, $whence);
H A DFnStream.php129 public function seek($offset, $whence = SEEK_SET) argument
131 call_user_func($this->_fn_seek, $offset, $whence);
H A DStreamDecoratorTrait.php126 public function seek($offset, $whence = SEEK_SET) argument
128 $this->stream->seek($offset, $whence);
H A DNoSeekStream.php16 public function seek($offset, $whence = SEEK_SET) argument
H A DAppendStream.php153 public function seek($offset, $whence = SEEK_SET) argument
157 } elseif ($whence !== SEEK_SET) {
H A DBufferStream.php84 public function seek($offset, $whence = SEEK_SET) argument
/plugin/findologicxmlexport/vendor/hoa/stream/IStream/
H A DPointable.php83 * @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 DStreamInterface.php80 * @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 DStreamInterface.php87 * @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 DCachingStream.php44 public function seek($offset, $whence = SEEK_SET) argument
46 if ($whence == SEEK_SET) {
48 } elseif ($whence == SEEK_CUR) {
H A DGuzzleStreamWrapper.php88 public function stream_seek($offset, $whence) argument
90 return $this->stream->seek($offset, $whence);
H A DStreamDecoratorTrait.php118 public function seek($offset, $whence = SEEK_SET) argument
120 return $this->stream->seek($offset, $whence);
H A DFnStream.php113 public function seek($offset, $whence = SEEK_SET) argument
115 return call_user_func($this->_fn_seek, $offset, $whence);
H A DLimitStream.php75 public function seek($offset, $whence = SEEK_SET) argument
77 if ($whence !== SEEK_SET || $offset < 0) {
H A DAppendStream.php140 public function seek($offset, $whence = SEEK_SET) argument
142 if (!$this->seekable || $whence !== SEEK_SET) {
H A DNoSeekStream.php11 public function seek($offset, $whence = SEEK_SET) argument
H A DNullStream.php60 public function seek($offset, $whence = SEEK_SET) argument
H A DStream.php227 public function seek($offset, $whence = SEEK_SET) argument
230 ? fseek($this->stream, $offset, $whence) === 0
/plugin/findologicxmlexport/vendor/hoa/stream/Wrapper/IWrapper/
H A DStream.php170 * @param int $whence Possible values:
179 public function stream_seek($offset, $whence = SEEK_SET); argument
/plugin/findologicxmlexport/vendor/hoa/file/
H A DFile.php329 * @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 DWrapper.php298 * @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 DWrapper.php429 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)

123