Home
last modified time | relevance | path

Searched refs:avb_be32toh (Results 1 – 14 of 14) sorted by relevance

/external/avb/libavb/
Davb_hashtree_descriptor.c43 dest->dm_verity_version = avb_be32toh(dest->dm_verity_version); in avb_hashtree_descriptor_validate_and_byteswap()
47 dest->data_block_size = avb_be32toh(dest->data_block_size); in avb_hashtree_descriptor_validate_and_byteswap()
48 dest->hash_block_size = avb_be32toh(dest->hash_block_size); in avb_hashtree_descriptor_validate_and_byteswap()
49 dest->fec_num_roots = avb_be32toh(dest->fec_num_roots); in avb_hashtree_descriptor_validate_and_byteswap()
52 dest->partition_name_len = avb_be32toh(dest->partition_name_len); in avb_hashtree_descriptor_validate_and_byteswap()
53 dest->salt_len = avb_be32toh(dest->salt_len); in avb_hashtree_descriptor_validate_and_byteswap()
54 dest->root_digest_len = avb_be32toh(dest->root_digest_len); in avb_hashtree_descriptor_validate_and_byteswap()
Davb_chain_partition_descriptor.c43 dest->rollback_index_location = avb_be32toh(dest->rollback_index_location); in avb_chain_partition_descriptor_validate_and_byteswap()
44 dest->partition_name_len = avb_be32toh(dest->partition_name_len); in avb_chain_partition_descriptor_validate_and_byteswap()
45 dest->public_key_len = avb_be32toh(dest->public_key_len); in avb_chain_partition_descriptor_validate_and_byteswap()
Davb_hash_descriptor.c44 dest->partition_name_len = avb_be32toh(dest->partition_name_len); in avb_hash_descriptor_validate_and_byteswap()
45 dest->salt_len = avb_be32toh(dest->salt_len); in avb_hash_descriptor_validate_and_byteswap()
46 dest->digest_len = avb_be32toh(dest->digest_len); in avb_hash_descriptor_validate_and_byteswap()
Davb_kernel_cmdline_descriptor.c43 dest->flags = avb_be32toh(dest->flags); in avb_kernel_cmdline_descriptor_validate_and_byteswap()
44 dest->kernel_cmdline_length = avb_be32toh(dest->kernel_cmdline_length); in avb_kernel_cmdline_descriptor_validate_and_byteswap()
Davb_footer.c31 dest->version_major = avb_be32toh(dest->version_major); in avb_footer_validate_and_byteswap()
32 dest->version_minor = avb_be32toh(dest->version_minor); in avb_footer_validate_and_byteswap()
Davb_vbmeta_image.c246 avb_be32toh(dest->required_libavb_version_major); in avb_vbmeta_image_header_to_host_byte_order()
248 avb_be32toh(dest->required_libavb_version_minor); in avb_vbmeta_image_header_to_host_byte_order()
255 dest->algorithm_type = avb_be32toh(dest->algorithm_type); in avb_vbmeta_image_header_to_host_byte_order()
274 dest->flags = avb_be32toh(dest->flags); in avb_vbmeta_image_header_to_host_byte_order()
Davb_crypto.c369 dest->key_num_bits = avb_be32toh(dest->key_num_bits); in avb_rsa_public_key_header_validate_and_byteswap()
370 dest->n0inv = avb_be32toh(dest->n0inv); in avb_rsa_public_key_header_validate_and_byteswap()
Davb_rsa.c94 key->n[i] = avb_be32toh(((uint32_t*)n)[key->len - i - 1]); in iavb_parse_key_data()
95 key->rr[i] = avb_be32toh(((uint32_t*)rr)[key->len - i - 1]); in iavb_parse_key_data()
Davb_util.h150 uint32_t avb_be32toh(uint32_t in) AVB_ATTR_WARN_UNUSED_RESULT;
Davb_util.c29 uint32_t avb_be32toh(uint32_t in) { in avb_be32toh() function
/external/avb/libavb_user/
Davb_user_verity.c153 flags = avb_be32toh(header->flags); in avb_user_verity_get()
191 flags = avb_be32toh(header->flags); in avb_user_verity_set()
Davb_user_verification.c153 flags = avb_be32toh(header->flags); in avb_user_verification_get()
192 flags = avb_be32toh(header->flags); in avb_user_verification_set()
/external/avb/libavb_ab/
Davb_ab_flow.c35 dest->crc32 = avb_be32toh(dest->crc32); in avb_ab_data_verify_and_byteswap()
/external/avb/test/
Davb_util_unittest.cc521 EXPECT_EQ(avb_be32toh(0x12345678), be32toh(0x12345678)); in TEST_F()