Home
last modified time | relevance | path

Searched refs:fs_size (Results 1 – 6 of 6) sorted by relevance

/system/extras/ext4_utils/
Dtest_mkuserimg_mke2fs.py43 self.assertEqual("8192", args.fs_size)
77 self.assertEqual("8192", args.fs_size)
123 args.output_file, str(int(args.fs_size) / 4096)]
Dmkuserimg_mke2fs.py180 blocks = int(args.fs_size) / BLOCKSIZE
206 if not args.fs_size:
/system/extras/partition_tools/
Ddynamic_partitions_device_info.proto36 uint64 fs_size = 5 [json_name = "fs_size"]; field
/system/vold/
Dcryptfs.cpp173 __le64 fs_size; /* Size of the encrypted fs, in 512 byte sectors */ member
1073 ftr->fs_size &= ~((sector_size / 512) - 1); in add_sector_size_param()
1088 auto target = std::make_unique<DmTargetCrypt>(0, crypt_ftr->fs_size, in create_crypto_blk_dev()
1742 SLOGD("crypt_ftr->fs_size = %lld\n", crypt_ftr->fs_size); in test_mount_encrypted_fs()
1879 ext_crypt_ftr.fs_size = nr_sec; in cryptfs_setup_ext_volume()
2087 tot_encryption_size = crypt_ftr->fs_size; in cryptfs_enable_all_volumes()
2089 … rc = cryptfs_enable_inplace(crypto_blkdev, real_blkdev, crypt_ftr->fs_size, &cur_encryption_done, in cryptfs_enable_all_volumes()
2102 if (!rc && crypt_ftr->encrypted_upto == crypt_ftr->fs_size) { in cryptfs_enable_all_volumes()
2257 crypt_ftr.fs_size = nr_sec - (CRYPT_FOOTER_OFFSET / CRYPT_SECTOR_SIZE); in cryptfs_enable_internal()
2259 crypt_ftr.fs_size = nr_sec; in cryptfs_enable_internal()
[all …]
/system/core/fs_mgr/libfiemap/
Dfiemap_writer_test.cpp404 static constexpr uint64_t fs_size = 2147483648; member in android::fiemap::VerifyBlockWritesExt4
409 uint64_t count = fs_size / block_size; in SetUp()
446 static constexpr uint64_t fs_size = 2147483648; member in android::fiemap::VerifyBlockWritesF2fs
451 uint64_t count = fs_size / block_size; in SetUp()
/system/gsid/
Dpartition_installer.cpp136 uint64_t fs_size = sb.f_blocks * sb.f_frsize; in PerformSanityChecks() local
143 double free_space_percent = ((1.0 * free_space) / fs_size) * 100; in PerformSanityChecks()