| 261 | } |
| 262 | |
| 263 | bool MemoryFile::openIfNeeded() { |
| 264 | if (!m_diskFile.isFileValid()) { |
| 265 | return m_diskFile.open(); |
| 266 | } |
| 267 | return true; |
| 268 | } |
| 269 | |
| 270 | void MemoryFile::cleanMayflyFD() { |
| 271 | if (m_isMayflyFD) { |
nothing calls this directly
no test coverage detected