Lines Matching refs:parser
51 parser = argparse.ArgumentParser(
55 parser.add_argument("src_dir", help="The source directory for user image.")
56 parser.add_argument("output_file", help="The path of the output image file.")
57 parser.add_argument("ext_variant", choices=["ext2", "ext4"],
59 parser.add_argument("mount_point", help="The mount point for user image.")
60 parser.add_argument("fs_size", help="Size of the file system.")
61 parser.add_argument("file_contexts", nargs='?',
64 parser.add_argument("--android_sparse", "-s", action="store_true",
66 parser.add_argument("--journal_size", "-j",
68 parser.add_argument("--timestamp", "-T",
70 parser.add_argument("--fs_config", "-C",
72 parser.add_argument("--product_out", "-D",
75 parser.add_argument("--block_list_file", "-B",
77 parser.add_argument("--base_alloc_file_in", "-d",
79 parser.add_argument("--base_alloc_file_out", "-A",
81 parser.add_argument("--label", "-L",
83 parser.add_argument("--inodes", "-i",
85 parser.add_argument("--inode_size", "-I",
87 parser.add_argument("--reserved_percent", "-M",
89 parser.add_argument("--flash_erase_block_size", "-e",
91 parser.add_argument("--flash_logical_block_size", "-o",
93 parser.add_argument("--mke2fs_uuid", "-U",
95 parser.add_argument("--mke2fs_hash_seed", "-S",
97 parser.add_argument("--share_dup_blocks", "-c", action="store_true",
100 args, remainder = parser.parse_known_args(argv)
107 parser.print_usage()