| 153 | bool HalFile::seek64(uint64_t pos) { HAL_FILE_WRAPPED_CALL(seekSet, pos); } |
| 154 | bool HalFile::seekCur(int64_t offset) { HAL_FILE_WRAPPED_CALL(seekCur, offset); } |
| 155 | bool HalFile::seekSet(size_t offset) { HAL_FILE_WRAPPED_CALL(seekSet, offset); } |
| 156 | int HalFile::available() const { HAL_FILE_WRAPPED_CALL(available, ); } |
| 157 | size_t HalFile::position() const { HAL_FILE_WRAPPED_CALL(position, ); } |
| 158 | int HalFile::read(void* buf, size_t count) { HAL_FILE_WRAPPED_CALL(read, buf, count); } |
no outgoing calls
no test coverage detected