/**
  * seeks to the given offset
  *
  * @param   int   $offset
  * @param   int   $whence
  * @return  bool
  */
 public function stream_seek($offset, $whence)
 {
     self::recordMethodCall('stream_seek', $this->path);
     return parent::stream_seek($offset, $whence);
 }