Lines Matching refs:parser
1105 parser = argparse.ArgumentParser(description='Check integrity of an ART APEX.') variable
1107 parser.add_argument('apex', help='APEX file input')
1109 parser.add_argument('--host', help='Check as host APEX', action='store_true')
1111 parser.add_argument('--flattened', help='Check as flattened (target) APEX', action='store_true')
1113 parser.add_argument('--flavor', help='Check as FLAVOR APEX', choices=FLAVORS_ALL,
1116 parser.add_argument('--list', help='List all files', action='store_true')
1117 parser.add_argument('--tree', help='Print directory tree', action='store_true')
1118 parser.add_argument('--size', help='Print file sizes', action='store_true')
1120 parser.add_argument('--tmpdir', help='Directory for temp files')
1121 parser.add_argument('--debugfs', help='Path to debugfs')
1123 parser.add_argument('--bitness', help='Bitness to check', choices=BITNESS_ALL,
1127 art_apex_test_default(parser)
1129 args = parser.parse_args()