Lines Matching refs:parser
1274 parser = argparse.ArgumentParser(description='Check integrity of an ART APEX.') variable
1276 parser.add_argument('apex', help='APEX file input')
1278 parser.add_argument('--host', help='Check as host APEX', action='store_true')
1280 parser.add_argument('--flattened', help='Check as flattened (target) APEX', action='store_true')
1282 parser.add_argument('--flavor', help='Check as FLAVOR APEX', choices=FLAVORS_ALL,
1285 parser.add_argument('--list', help='List all files', action='store_true')
1286 parser.add_argument('--tree', help='Print directory tree', action='store_true')
1287 parser.add_argument('--size', help='Print file sizes', action='store_true')
1289 parser.add_argument('--tmpdir', help='Directory for temp files')
1290 parser.add_argument('--debugfs', help='Path to debugfs')
1292 parser.add_argument('--bitness', help='Bitness to check', choices=BITNESS_ALL,
1296 art_apex_test_default(parser)
1298 args = parser.parse_args()