| 131 | } |
| 132 | |
| 133 | bool MemoryFile::openIfNeeded() { |
| 134 | if (!m_diskFile.isFileValid()) { |
| 135 | return m_diskFile.open(); |
| 136 | } |
| 137 | return true; |
| 138 | } |
| 139 | |
| 140 | void MemoryFile::cleanMayflyFD() { |
| 141 | if (m_isMayflyFD && m_diskFile.isFileValid()) { |
nothing calls this directly
no test coverage detected