Home
last modified time | relevance | path

Searched refs:fec_size (Results 1 – 18 of 18) sorted by relevance

/system/extras/verity/fec/
Dimage.cpp197 ctx->fec_size = ctx->rounds * ctx->roots * FEC_BLOCKSIZE; in image_ecc_new()
200 INFO("allocating %u bytes of memory\n", ctx->fec_size); in image_ecc_new()
203 ctx->fec = new uint8_t[ctx->fec_size]; in image_ecc_new()
206 FATAL("failed to allocate %u bytes\n", ctx->fec_size); in image_ecc_new()
254 if (p->fec_size % p->roots || p->fec_size % FEC_BLOCKSIZE) { in image_ecc_load()
255 FATAL("invalid length in '%s': %u\n", filename.c_str(), p->fec_size); in image_ecc_load()
267 if (p->fec_size != ctx->fec_size) { in image_ecc_load()
275 if (!android::base::ReadFully(fd, ctx->fec, ctx->fec_size)) { in image_ecc_load()
276 FATAL("failed to read %u bytes from '%s': %s\n", ctx->fec_size, in image_ecc_load()
283 SHA256(ctx->fec, ctx->fec_size, hash); in image_ecc_load()
[all …]
Dimage.h54 uint32_t fec_size; member
Dmain.cpp197 INFO("\traw fec size: %u\n", ctx.fec_size); in encode()
246 INFO("\traw fec size: %u\n", ctx.fec_size); in decode()
/system/update_engine/payload_consumer/
Dverity_writer_android.cc44 if (partition_->hash_tree_size != 0 || partition_->fec_size != 0) { in Init()
101 if (partition_->fec_size != 0) { in Update()
110 partition_->fec_size, in Update()
123 uint64_t fec_size, in EncodeFEC() argument
132 TEST_AND_RETURN_FALSE(rounds * fec_roots * block_size == fec_size); in EncodeFEC()
Dverity_writer_stub.cc30 return partition.hash_tree_size == 0 && partition.fec_size == 0; in Init()
Dverity_writer_android.h47 uint64_t fec_size,
Dinstall_plan.h127 uint64_t fec_size{0};
Dverity_writer_android_unittest.cc105 partition_.fec_size = 2 * 4096; in TEST_F()
Dfilesystem_verifier_action_unittest.cc305 part.fec_size = 2 * 4096; in TEST_F()
367 part.fec_size = 2 * 4096; in TEST_F()
Dfilesystem_verifier_action.cc183 if (partition.fec_size != 0 && in ScheduleRead()
Ddelta_performer.cc898 install_part.fec_size = extent.num_blocks() * block_size_; in ParseManifestPartitions()
/system/extras/libfec/
Dfec_open.cpp143 if (header.fec_size % header.roots || in parse_ecc_header()
144 header.fec_size % FEC_BLOCKSIZE) { in parse_ecc_header()
145 error("inconsistent ecc size %u", header.fec_size); in parse_ecc_header()
153 if (header.fec_size != in parse_ecc_header()
155 error("inconsistent ecc size %u", header.fec_size); in parse_ecc_header()
159 f->ecc.size = header.fec_size; in parse_ecc_header()
Davb_utils.cpp124 f->size - hashtree_descriptor.fec_size); in parse_avb_image()
130 f->ecc.size = hashtree_descriptor.fec_size; in parse_avb_image()
/system/core/fs_mgr/libfs_avb/tests/
Dfs_avb_util_test.cpp90 EXPECT_EQ(90112UL, hashtree_desc->fec_size); in TEST_F()
/system/update_engine/payload_generator/
Dpayload_generation_config_android.cc70 hashtree.data_block_size, hashtree.fec_offset, hashtree.fec_size); in AvbDescriptorCallback()
215 ExtentForBytes(block_size, ecc_data.start, header->fec_size); in LoadVerityConfig()
/system/extras/libfec/include/fec/
Dio.h50 uint32_t fec_size; member
/system/core/fs_mgr/libfs_avb/
Davb_util.cpp82 if (hashtree_desc.fec_size > 0) { in ConstructVerityTable()
/system/core/fs_mgr/libsnapshot/
Dsnapshot_test.cpp1598 constexpr auto fec_size = partition_size - data_size - hashtree_size; in TEST_F() local
1616 sys_->mutable_fec_extent()->set_num_blocks(fec_size / block_size); in TEST_F()