Searched refs:whence (Results 1 - 4 of 4) sorted by relevance
/commonlibrary/utils_lite/hals/file/ |
H A D | hal_file.c | 58 int HalFileSeek(int fd, int offset, unsigned int whence) in HalFileSeek() argument 60 return lseek(fd, offset, whence); in HalFileSeek()
|
H A D | hal_file.h | 37 int HalFileSeek(int fd, int offset, unsigned int whence);
|
/commonlibrary/utils_lite/file/src/file_impl_hal/ |
H A D | file.c | 56 int UtilsFileSeek(int fd, int offset, unsigned int whence)
in UtilsFileSeek() argument 58 return HalFileSeek(fd, offset, whence);
in UtilsFileSeek()
|
/commonlibrary/utils_lite/include/ |
H A D | utils_file.h | 226 * @param offset Indicates the offset of the read and write position based on the <b>whence</b> parameter.
227 * The value can be negative if the value of <b>whence</b> is <b>SEEK_CUR_FS</b> or <b>SEEK_END_FS</b>.
228 * @param whence Indicates the start position of the offset. The following start positions are supported.
229 * whence | Description
241 int UtilsFileSeek(int fd, int offset, unsigned int whence);
|
Completed in 2 milliseconds