Lines Matching refs:table
58 Result<void> ReadVBMetaTable(int fd, uint64_t offset, VBMetaTable* table) { in ReadVBMetaTable() argument
66 Result<void> rv_header = LoadAndVerifySuperVBMetaHeader(header_buffer.get(), &table->header); in ReadVBMetaTable()
71 const uint64_t descriptors_offset = offset + table->header.header_size; in ReadVBMetaTable()
73 std::make_unique<uint8_t[]>(table->header.descriptors_size); in ReadVBMetaTable()
75 table->header.descriptors_size, descriptors_offset)) { in ReadVBMetaTable()
80 LoadVBMetaDescriptors(descriptors_buffer.get(), table->header.descriptors_size, in ReadVBMetaTable()
81 &table->descriptors); in ReadVBMetaTable()
85 Result<void> ReadPrimaryVBMetaTable(int fd, VBMetaTable* table) { in ReadPrimaryVBMetaTable() argument
87 return ReadVBMetaTable(fd, offset, table); in ReadPrimaryVBMetaTable()
90 Result<void> ReadBackupVBMetaTable(int fd, VBMetaTable* table) { in ReadBackupVBMetaTable() argument
92 return ReadVBMetaTable(fd, offset, table); in ReadBackupVBMetaTable()