| 74 | } |
| 75 | |
| 76 | bool FileLoader::SetFileIfUnset(const std::string &file) { |
| 77 | if (impl_->file.empty()) { |
| 78 | impl_->file = file; |
| 79 | return true; |
| 80 | } |
| 81 | return false; |
| 82 | } |
| 83 | |
| 84 | void FileLoader::ResetTimeByInode(ino_t ino) { |
| 85 | if (impl_->ino != ino) { |
no outgoing calls
no test coverage detected