| 70 | const std::vector<Directory::Entry> dirents; |
| 71 | |
| 72 | OpenFileState(private_key, |
| 73 | oflags_t flags, |
| 74 | std::shared_ptr<File> file, |
| 75 | std::vector<Directory::Entry>&& dirents) |
| 76 | : file(file), flags(flags), dirents(std::move(dirents)) {} |
| 77 | |
| 78 | [[nodiscard]] static int create(std::shared_ptr<File> file, |
| 79 | oflags_t flags, |