Lines Matching refs:offset
38 ** These maintain the `known seek offset' for seek optimization.
121 ** Updates internal offset into file.
134 /* if the read succeeded, update the current offset */
163 ** SM_STDSEEK -- set the file offset position
167 ** offset -- how far to position from "base" (set by 'whence')
168 ** whence -- indicates where the "base" of the 'offset' to start
172 ** Success: the current offset
175 ** Updates the internal value of the offset.
179 sm_stdseek(fp, offset, whence)
181 off_t offset;
186 ret = lseek(fp->f_file, (off_t) offset, whence);