• Home
  • Raw
  • Download

Lines Matching refs:get

156   fs_config = prop_dict.get("fs_config")
171 root_dir = prop_dict.get("root_dir")
213 assert prop_dict.get('fs_type', '').startswith('ext4')
222 used_blocks = int(m.groupdict().get('used_blocks'))
223 total_blocks = int(m.groupdict().get('total_blocks'))
253 fs_type = prop_dict.get("fs_type", "")
255 needs_projid = prop_dict.get("needs_projid", 0)
256 needs_casefold = prop_dict.get("needs_casefold", 0)
257 needs_compress = prop_dict.get("needs_compress", 0)
295 if prop_dict.get("ext4_share_dup_blocks") == "true":
339 if prop_dict.get("squashfs_disable_4k_align") == "true":
361 if (needs_compress or prop_dict.get("f2fs_compress") == "true"):
363 if (prop_dict.get("f2fs_compress") == "true"):
366 if (prop_dict.get("f2fs_sldc_flags") == None):
369 sldc_flags_str = prop_dict.get("f2fs_sldc_flags")
392 int(prop_dict.get("partition_reserved_size", 0)),
393 int(prop_dict.get("partition_reserved_size", 0)) // BYTES_IN_MB))
404 if run_e2fsck and prop_dict.get("skip_fsck") != "true":
436 fs_type = prop_dict.get("fs_type", "")
441 elif fs_type.startswith("f2fs") and prop_dict.get("f2fs_compress") == "true":
448 if (prop_dict.get("use_dynamic_partition_size") == "true" and
464 reserved_size = int(prop_dict.get("partition_reserved_size", BYTES_IN_MB * 16))
465 partition_headroom = int(prop_dict.get("partition_headroom", 0))
485 block_size = int(fs_dict.get("Block size", "4096"))
486 free_size = int(fs_dict.get("Free blocks", "0")) * block_size
487 reserved_size = int(prop_dict.get("partition_reserved_size", 0))
488 partition_headroom = int(fs_dict.get("partition_headroom", 0))
508 inodes = int(fs_dict.get("Inode count", extfs_inode_count))
509 inodes -= int(fs_dict.get("Free inodes", "0"))
520 elif fs_type.startswith("f2fs") and prop_dict.get("f2fs_compress") == "true":
529 block_count = int(fs_dict.get("block_count", "0"))
530 log_blocksize = int(fs_dict.get("log_blocksize", "12"))