Lines Matching refs:seek
8 The open file pointer must have methods read(), seek(), and close().
9 When the setpos() and rewind() methods are not used, the seek()
29 setpos(pos) -- seek to the specified position
41 The open file pointer must have methods write(), tell(), seek(), and
140 def seek(self, pos, whence=0):
149 raise OSError("cannot seek")
156 self.file.seek(self.offset + pos, 0)
202 self.file.seek(n, 1)
219 _file -- the open file with methods read(), close(), and seek()
355 self._data_chunk.seek(0, 0)
358 self._data_chunk.seek(pos, 0)
401 _file -- the open file with methods write(), close(), tell(), seek()
616 self._file.seek(self._form_length_pos, 0)
618 self._file.seek(self._data_length_pos, 0)
620 self._file.seek(curpos, 0)