Lines Matching refs:data
61 data = json.load(f)
62 ret["subsystem"] = data.get("subsystem")
63 for k, _ in data.get("parts").items():
71 data = json.load(f)
72 ret["subsystem"] = data.get("component").get("subsystem")
73 ret.get("components").append(data.get("component").get("name"))
84 data = read_component_from_ohos_build(ohos_build)
85 if data.get("subsystem") == subsys:
86 ret = ret.union(set(data.get("components")))
89 data = read_component_from_bundle_json(bundle_json)
90 if data.get("subsystem") == subsys:
91 ret = ret.union(set(data.get("components")))
98 data = json.load(f)
99 for subsys, v in data.items():
139 data = update_components(args.subsys)
140 ret["subsystems"] = data.get("subsystems")