/**
* Sets the position to the end of the current buffer + offset
*
* @param integer $offset The offset in bytes
*
* @return boolean
*/
protected function seek_end($offset)
{
$offset += \strlen($this->buffers[$this->name]);
if ($offset < 0) {
return false;
}
$this->position = $offset;
return true;
}