| 72 | } |
| 73 | |
| 74 | bool State::setEntriesForChildPath(const std::string& childPath) { |
| 75 | auto path = file::getChildPath(current_path, childPath); |
| 76 | LOGGER.info("Navigating from {} to {}", current_path, path); |
| 77 | return setEntriesForPath(path); |
| 78 | } |
| 79 | |
| 80 | bool State::getDirent(uint32_t index, dirent& dirent) { |
| 81 | auto lock = mutex.asScopedLock(); |
no test coverage detected