| 216 | } |
| 217 | |
| 218 | auto FatFsFileSystem::FreeFatInode(FatInode* fi) -> void { |
| 219 | if (fi != nullptr) { |
| 220 | fi->in_use = false; |
| 221 | } |
| 222 | } |
| 223 | |
| 224 | auto FatFsFileSystem::AllocateFil() -> FIL* { |
| 225 | for (auto& fh : fil_pool_) { |
nothing calls this directly
no outgoing calls
no test coverage detected