Lines Matching refs:offset
56 * @brief Defines the offset position used by {@link UtilsFileSeek}
65 * @brief Defines the offset position used by {@link UtilsFileSeek}
74 * @brief Defines the offset position used by {@link UtilsFileSeek}
223 * @brief Adjusts the read and write position offset in a file.
225 * @param fd Indicates the file descriptor of the file where the read and write position offset needs adjustment.
226 * @param offset Indicates the offset of the read and write position based on the <b>whence</b> parameter.
228 * @param whence Indicates the start position of the offset. The following start positions are supported.
232 * ^ | Then adds the offset after the read and write position.
233 * SEEK_CUR_FS | Adds the offset after the current read and write position.
235 * ^ | Then adds the offset after the read and write position.
241 int UtilsFileSeek(int fd, int offset, unsigned int whence);