Lines Matching +full:s +full:- +full:tell
20 'getSize', 'tell', 'eof', 'isSeekable', 'seek', 'isWritable', 'write',
32 $this->methods = $methods;
36 $this->{'_fn_'.$name} = $fn;
56 if (isset($this->_fn_close)) {
57 ($this->_fn_close)();
97 return ($this->_fn___toString)();
102 … trigger_error(sprintf('%s::__toString exception: %s', self::class, (string) $e), E_USER_ERROR);
110 ($this->_fn_close)();
115 return ($this->_fn_detach)();
120 return ($this->_fn_getSize)();
123 public function tell(): int function in GuzzleHttp\\Psr7\\FnStream
125 return ($this->_fn_tell)();
130 return ($this->_fn_eof)();
135 return ($this->_fn_isSeekable)();
140 ($this->_fn_rewind)();
145 ($this->_fn_seek)($offset, $whence);
150 return ($this->_fn_isWritable)();
155 return ($this->_fn_write)($string);
160 return ($this->_fn_isReadable)();
165 return ($this->_fn_read)($length);
170 return ($this->_fn_getContents)();
178 return ($this->_fn_getMetadata)($key);