Lines Matching refs:get
152 fs_config = prop_dict.get("fs_config")
167 root_dir = prop_dict.get("root_dir")
209 assert prop_dict.get('fs_type', '').startswith('ext4')
218 used_blocks = int(m.groupdict().get('used_blocks'))
219 total_blocks = int(m.groupdict().get('total_blocks'))
249 fs_type = prop_dict.get("fs_type", "")
313 if prop_dict.get("squashfs_disable_4k_align") == "true":
348 int(prop_dict.get("partition_reserved_size", 0)),
349 int(prop_dict.get("partition_reserved_size", 0)) // BYTES_IN_MB))
359 if run_e2fsck and prop_dict.get("skip_fsck") != "true":
391 fs_type = prop_dict.get("fs_type", "")
401 if (prop_dict.get("use_dynamic_partition_size") == "true" and
408 reserved_size = int(prop_dict.get("partition_reserved_size", BYTES_IN_MB * 16))
409 partition_headroom = int(prop_dict.get("partition_headroom", 0))
429 block_size = int(fs_dict.get("Block size", "4096"))
430 free_size = int(fs_dict.get("Free blocks", "0")) * block_size
431 reserved_size = int(prop_dict.get("partition_reserved_size", 0))
432 partition_headroom = int(fs_dict.get("partition_headroom", 0))
452 inodes = int(fs_dict.get("Inode count", extfs_inode_count))
453 inodes -= int(fs_dict.get("Free inodes", "0"))