Searched refs:product_name (Results 1 - 4 of 4) sorted by relevance
/developtools/integration_verification/tools/rom_ram_analyzer/lite_small/src/ |
H A D | rom_analysis.py | 42 project_path, sub_com_dict, product_name, recollect_gn, baseline, unit_adapt, output_file namespace 104 def collect_product_info(cls, product_name: str): 106 product_dict: Dict[str, List[str]] = cls._find_files(product_name) 107 with os.fdopen(os.open(configs[product_name]["product_infofile"], os.O_WRONLY | os.O_CREAT, mode=0o640), 'w', encoding='utf-8') as f: 150 def _find_files(cls, product_name: str) -> Dict[str, List[str]]: 151 product_dir: Dict[str, Dict] = configs[product_name]["product_dir"] 152 if not product_name: 154 f"product_name '{product_name}' not found in the config.yaml") 162 f"'relative_dir' of {product_name} no [all...] |
H A D | config.py | 42 parser.add_argument("-p", "--product_name", type=str, 66 product_name = _args.product_name variable 67 if product_name not in configs.keys(): 68 print(f"error: product_name '{product_name}' illegal")
|
/developtools/syscap_codec/tools/ |
H A D | syscap_collector.py | 46 for product_name, syscaps_list in syscaps_dict.items(): 52 filename = os.path.join(output_path, f'{product_name}.json') 129 for product_name, path_dict in component_path_dict.items(): 135 if product_define_dict.get(product_name).get(component): 136 false_syscap = find_false_syscap(product_define_dict.get(product_name).get(component)) 142 syscap_dict.update({product_name: bundles_list}) 155 for product_name, component_name_list in product_define_dict.items(): 165 component_path_dict.update({product_name: component_paths})
|
/developtools/integration_verification/tools/rom_ram_analyzer/standard/ |
H A D | rom_analyzer.py | 81 project_path: Text, product_name: Text, output_file: Text, output_execel: bool, add_baseline: bool, 87 product_name: eg,rk3568 96 project_path, "out", product_name, "packages", "phone") 312 help="path of out/{product_name}/packages/phone/system_module_info.json") 313 parser.add_argument("-n", "--product_name", required=True, 316 help="subdirectories of out/{product_name}/packages/phone to be counted." 334 product = args.product_name
|
Completed in 4 milliseconds