| 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 |
| 164 | void HalFile::rewindDirectory() { HAL_FILE_WRAPPED_CALL(rewindDirectory, ); } |
| 165 | bool HalFile::close() { HAL_FILE_WRAPPED_CALL(close, ); } |
| 166 | HalFile HalFile::openNextFile() { |
no outgoing calls
no test coverage detected