Home
last modified time | relevance | path

Searched refs:component_name (Results 1 - 9 of 9) sorted by relevance

/build/lite/testfwk/
H A Dgen_testfwk_info.py64 component_name = component["component"]
65 list_components_name.append(component_name)
66 if component_name not in set_components_name:
67 set_components_name.append(component_name)
70 for component_name in set_components_name:
71 data[platform_name][PART_INFOS][component_name] = \
72 {"part_name": component_name, "build_out_dir": "."}
/build/hb/resolver/
H A Dtool_args_resolver.py52 component_name, module_name = arg.split(':')
54 out_dir, component_name, module_name))
72 component_name, module_name = arg.split(':')
74 out_dir, component_name, module_name))
92 component_name, module_name = arg.split(':')
94 out_dir, component_name, module_name))
H A Dbuild_args_resolver.py231 component_name = ComponentUtil.get_component_name(os.getcwd())
234 component_name),
236 target_list.append(component_name)
237 target_list.append(component_name + '_test')
239 component_name = ComponentUtil.get_component_name(os.getcwd())
240 component_name = os.path.basename(
241 os.getcwd()) if component_name == '' else component_name
243 .format(component_name, Config().product), "4001")
/build/hb/util/
H A Dcomponent_util.py47 def is_component_in_product(component_name: str, product_name: str) -> bool:
52 if component_name in dirs:
83 def get_component_module_full_name(out_path: str, component_name: str, module_name: str) -> str:
94 if os.path.isdir(os.path.join(file_path, component)) and component == component_name:
110 module_name, component_name, out_path), "4001")
113 def search_bundle_file(component_name: str):
115 return all_bundle_path.get(component_name)
/build/tools/component_tools/
H A Dgenerate_kconfig.py83 component_name = component_dict.get("component")
84 result += create_config("{}$${}".format(subsys_name, component_name), component_name)
85 result += create_feature("{}$${}".format(subsys_name, component_name))
H A Dparse_kconf.py43 component_name = component.get(COMPONENT)
44 component_subsys_dict[component_name] = subsys_name
61 for component_name in config_component_list:
62 deps = component_deps_dict.get(component_name)
H A Dcomponent_node.py128 def __init__(self, component_name: str):
129 self._components_name = component_name
/build/tools/component_tools/static_check/bundle_check/
H A Dbundle_check_online.py104 component_name = value.split('/')[1] if ('/' in value) else value
105 if not BundleCheckTools.match_unix_like_name(component_name):
H A Dbundle_json_check.py53 component_name = bundle.component_name
56 if len(component_name) == 0:
57 component_name = "Unknow"
64 item['component'] = component_name
157 - ``component_name()`` : 返回该 bundle.json 所在部件名。
177 def component_name(self) -> str: member in BundleJson

Completed in 4 milliseconds