| 158 | int HalFile::read(void* buf, size_t count) { HAL_FILE_WRAPPED_CALL(read, buf, count); } |
| 159 | int HalFile::read() { HAL_FILE_WRAPPED_CALL(read, ); } |
| 160 | size_t HalFile::write(const void* buf, size_t count) { HAL_FILE_WRAPPED_CALL(write, buf, count); } |
| 161 | size_t HalFile::write(uint8_t b) { HAL_FILE_WRAPPED_CALL(write, b); } |
| 162 | bool HalFile::rename(const char* newPath) { HAL_FILE_WRAPPED_CALL(rename, newPath); } |
| 163 | bool HalFile::isDirectory() const { HAL_FILE_FORWARD_CALL(isDirectory, ); } // already thread-safe, no need to wrap |
no outgoing calls