Searched refs:all_parts (Results 1 – 4 of 4) sorted by relevance
/build/hb/util/loader/ |
D | platforms_loader.py | 110 all_parts = {} 138 all_parts[_platform_name] = parts 142 self._all_parts = all_parts 148 all_parts = {} 154 all_parts[_platform] = part_list 155 return all_parts 159 all_parts = {} 165 all_parts[_platform] = part_list 166 return all_parts 190 all_parts = platform_loader.get_all_parts() [all …]
|
/build/hb/util/ |
D | product_util.py | 188 all_parts = {} 195 all_parts.update(parts) 198 all_parts.update(ProductUtil.get_vendor_parts_list(_info)) 200 return all_parts 216 all_parts = {} 223 all_parts.update(parts) 226 all_parts.update(ProductUtil.get_vendor_parts_list(_info)) 230 for part, value in all_parts.items(): 250 all_parts = ProductUtil.get_all_components(product_json) 252 for part, value in all_parts.items():
|
/build/hb/services/ |
D | loader.py | 604 all_parts = self._platforms_info.get('all_parts') 606 for _platform, _parts in all_parts.items(): 812 all_parts = read_json_file(parts_file) 813 if "parts" not in all_parts: 818 all_parts = all_parts["parts"] 843 if full_part_name not in all_parts: 848 …lf._override_one_component(self._subsystem_info, component, build_file, all_parts, overrided_compo… 853 write_json_file(parts_file, {"parts": all_parts}) 856 self._output_parts_config_json(all_parts, parts_file) 862 …def _override_one_component(self, subsystem_info, component, build_file, all_parts, overrided_comp… argument [all …]
|
/build/hb/util/preloader/ |
D | preloader_process_data.py | 179 all_parts = {} 183 all_parts.update(current_product_parts) 185 all_parts.update(get_vendor_parts_list(self._config)) 186 all_parts.update(self._get_product_specific_parts()) 190 all_parts.update(self._get_device_specific_parts()) 191 self._parts.update(all_parts)
|