Lines Matching refs:parser
1275 parser = argparse.ArgumentParser(description='Check integrity of an ART APEX.') variable
1277 parser.add_argument('apex', help='APEX file input')
1279 parser.add_argument('--host', help='Check as host APEX', action='store_true')
1281 parser.add_argument('--flattened', help='Check as flattened (target) APEX', action='store_true')
1283 parser.add_argument('--flavor', help='Check as FLAVOR APEX', choices=FLAVORS_ALL,
1286 parser.add_argument('--list', help='List all files', action='store_true')
1287 parser.add_argument('--tree', help='Print directory tree', action='store_true')
1288 parser.add_argument('--size', help='Print file sizes', action='store_true')
1290 parser.add_argument('--tmpdir', help='Directory for temp files')
1291 parser.add_argument('--debugfs', help='Path to debugfs')
1293 parser.add_argument('--bitness', help='Bitness to check', choices=BITNESS_ALL,
1297 art_apex_test_default(parser)
1299 args = parser.parse_args()