Home
last modified time | relevance | path

Searched refs:VBMetaTable (Results 1 – 9 of 9) sorted by relevance

/system/core/fs_mgr/libvbmeta/
Dreader.h26 android::base::Result<void> ReadPrimaryVBMetaTable(int fd, VBMetaTable* table);
27 android::base::Result<void> ReadBackupVBMetaTable(int fd, VBMetaTable* table);
Dbuilder.h40 std::unique_ptr<VBMetaTable> ExportVBMetaTable();
49 VBMetaTable table_;
Dreader.cpp58 Result<void> ReadVBMetaTable(int fd, uint64_t offset, VBMetaTable* table) { in ReadVBMetaTable()
85 Result<void> ReadPrimaryVBMetaTable(int fd, VBMetaTable* table) { in ReadPrimaryVBMetaTable()
90 Result<void> ReadBackupVBMetaTable(int fd, VBMetaTable* table) { in ReadBackupVBMetaTable()
Dsuper_vbmeta_format.h31 struct VBMetaTable { struct
Dwriter.h28 std::string SerializeVBMetaTable(const VBMetaTable& input);
Dbuilder.cpp135 std::unique_ptr<VBMetaTable> SuperVBMetaBuilder::ExportVBMetaTable() { in ExportVBMetaTable()
155 return std::make_unique<VBMetaTable>(table_); in ExportVBMetaTable()
159 std::unique_ptr<VBMetaTable> table = ExportVBMetaTable(); in ExportVBMetaTableToFile()
Dwriter.cpp29 std::string SerializeVBMetaTable(const VBMetaTable& input) { in SerializeVBMetaTable()
Dsuper_vbmeta_test.cpp146 VBMetaTable table; in TEST()
148 VBMetaTable table_backup; in TEST()
Dbuilder_test.cpp44 std::unique_ptr<VBMetaTable> table = builder->ExportVBMetaTable(); in TEST()