GCC Code Coverage Report


Directory: ./
File: Os/Stub/FileSystem.cpp
Date: 2026-09-03 22:12:29
Exec Total Coverage
Lines: 0 16 0.0%
Functions: 0 8 0.0%
Branches: 0 0 -%

Line Branch Exec Source
1 // ======================================================================
2 // \title Os/Stub/File.cpp
3 // \brief stub implementation for Os::File
4 // ======================================================================
5 #include "Os/Stub/FileSystem.hpp"
6
7 namespace Os {
8 namespace Stub {
9 namespace FileSystem {
10
11 StubFileSystem::Status StubFileSystem::_removeDirectory(const char* path) {
12 return Status::NOT_SUPPORTED;
13 }
14
15 StubFileSystem::Status StubFileSystem::_removeFile(const char* path) {
16 return Status::NOT_SUPPORTED;
17 }
18
19 StubFileSystem::Status StubFileSystem::_rename(const char* originPath, const char* destPath) {
20 return Status::NOT_SUPPORTED;
21 }
22
23 StubFileSystem::Status StubFileSystem::_getWorkingDirectory(char* path, FwSizeType bufferSize) {
24 return Status::NOT_SUPPORTED;
25 }
26
27 StubFileSystem::Status StubFileSystem::_changeWorkingDirectory(const char* path) {
28 return Status::NOT_SUPPORTED;
29 }
30
31 StubFileSystem::Status StubFileSystem::_getFreeSpace(const char* path, FwSizeType& totalBytes, FwSizeType& freeBytes) {
32 return Status::NOT_SUPPORTED;
33 }
34
35 FileSystemHandle* StubFileSystem::getHandle() {
36 return &this->m_handle;
37 }
38
39 StubFileSystem::Status StubFileSystem::_getPathType(const char* path, PathType& pathType) {
40 return Status::NOT_SUPPORTED;
41 }
42
43 } // namespace FileSystem
44 } // namespace Stub
45 } // namespace Os
46